-
Notifications
You must be signed in to change notification settings - Fork 356
Support float[] for Postgres #1046
New issue
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
Comments
When defining the column in postgres, if While this works natively for postgres jdbc driver, other stores may not have a data type mapping to java |
As pointed out in #1037 (comment) float arrays don't work properly with Postgres.
This is actually a two part problem.
One is that writing doesn't work because Postgres requires a special type representation, when writing arrays of floats.
That issue will be resolved by 9f0ada5
The other problem is that loading that array again results in a
List
of double instead of float.The text was updated successfully, but these errors were encountered: