We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the README the TIME mapping should work like this:
TIME
However as seen below the LocalTimeCodec uses the TIMETZ_ARRAY instead of the TIME_ARRAY, which breaks decoding of Postgres' TIME[] to LocalTime[].
LocalTimeCodec
TIMETZ_ARRAY
TIME_ARRAY
TIME[]
LocalTime[]
r2dbc-postgresql/src/main/java/io/r2dbc/postgresql/codec/LocalTimeCodec.java
Lines 35 to 37 in d1ecccd
The text was updated successfully, but these errors were encountered:
Ah, there already is a PR for this: #555
Sorry, something went wrong.
No branches or pull requests
According to the README the
TIME
mapping should work like this:However as seen below the
LocalTimeCodec
uses theTIMETZ_ARRAY
instead of theTIME_ARRAY
, which breaks decoding of Postgres'TIME[]
toLocalTime[]
.r2dbc-postgresql/src/main/java/io/r2dbc/postgresql/codec/LocalTimeCodec.java
Lines 35 to 37 in d1ecccd
The text was updated successfully, but these errors were encountered: