mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
added ability to use filters to stop certain records from being cached, fixed insert bug due to binding instants to its default timestamp
This commit is contained in:
@ -739,7 +739,7 @@ public class QueryManager
|
||||
}
|
||||
else if(value instanceof Instant i)
|
||||
{
|
||||
statement.setString(index, i.toString());
|
||||
statement.setString(index, i.toString().replaceAll("T", " ").replaceAll("Z", ""));
|
||||
return (1);
|
||||
}
|
||||
else if(value instanceof LocalDate ld)
|
||||
|
Reference in New Issue
Block a user