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
I have a table with a column of type nullable uuid (i map postgres uuid -> java.util.UUID)
inserting of rows works as expected but filtering by this field when it's empty results in this error:
org.postgresql.util.PSQLException: ERROR: could not determine data type of parameter $1
calling translate and executing the resulting query from the command-line works just fine.
I created this snippet but as since the problem is related to the jdbc driver it's not happening there.
Workaround
using String instead of java.util.UUID works
@getquill/maintainers
The text was updated successfully, but these errors were encountered:
Version: (e.g.
4.6.0.1
)Module: (e.g.
quill-jdbc
)Database: (e.g.
postgresql
)Expected behavior
I have a table with a column of type nullable uuid (i map postgres uuid -> java.util.UUID)
inserting of rows works as expected but filtering by this field when it's empty results in this error:
org.postgresql.util.PSQLException: ERROR: could not determine data type of parameter $1
calling translate and executing the resulting query from the command-line works just fine.
I created this snippet but as since the problem is related to the jdbc driver it's not happening there.
Workaround
using String instead of java.util.UUID works
@getquill/maintainers
The text was updated successfully, but these errors were encountered: