You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No point since we are anyway in-process, in H2Dialect we do:
override def adaptSettings(settings: R2dbcSettings): R2dbcSettings = {
val res = settings
// app timestamp is db timestamp because same process
.withUseAppTimestamp(true)
.withDbTimestampMonotonicIncreasing(true)
res
}
But when looking into logs for a test using projections I still see repeated /*SQL #:1*/SELECT CURRENT_TIMESTAMP; so the adapted settings is not used/not applied somewhere.
The text was updated successfully, but these errors were encountered:
No point since we are anyway in-process, in
H2Dialect
we do:But when looking into logs for a test using projections I still see repeated
/*SQL #:1*/SELECT CURRENT_TIMESTAMP;
so the adapted settings is not used/not applied somewhere.The text was updated successfully, but these errors were encountered: