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
And the error message is: aborted: ERROR: column "completed_at" is of type timestamp without time zone but expression is of type text Hint: You will need to rewrite or cast the expression.
Here I have no idea why it fails.
@getquill/maintainers
The text was updated successfully, but these errors were encountered:
Hi! I ran into the same error message you mention in the second issue. I was able to make it work by downgrading quill to 4.3.0. Have not been able to dig into why it happens yet, but perhaps that is useful to you.
Version: '4.8.0'
Module:
quill-jdbc
Database:
postgresql
I have model class:
then DAO method:
Because of
returning(h => h)
it generates this SQL:Then the error is obvious:
was aborted: ERROR: column round.user_id does not exist
, I have configured SnakeCase, but it doesnt match.The other issue is, when I remove
returning command
, then it fails on diffrent case, resulting SQL is:And the error message is:
aborted: ERROR: column "completed_at" is of type timestamp without time zone but expression is of type text Hint: You will need to rewrite or cast the expression.
Here I have no idea why it fails.
@getquill/maintainers
The text was updated successfully, but these errors were encountered: