R2DBC LocalTime Support #1168
-
Hi I'm using Postgres and
When I attempt to insert it, it fails mentioning that type should be of Timestamp and I should create a converter. The issue with the converter is that it introduces date and timezone / offset in the conversion. Is there a way I can change my |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I have created a PR that supports storing |
Beta Was this translation helpful? Give feedback.
I have created a PR that supports storing
LocalTime
usingTimestamp
.At the moment we don't have special database mapping for time, everything is being mapped thru timestamp.
#1170