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
We've encountered a weird bug here when using a JSONB column.
JSONB
if you have a where clause like
.where("event_metadata.metadata -> 'replaced' != 'true'")
The query will be replaced by
event_metadata.metadata - > 'replaced' != 'true'
notice the extra space between the - and >
-
>
This prevents the query from being run.
The text was updated successfully, but these errors were encountered:
As I mentioned in #16 , setting the following in an initializer resolves this issue:
PpSql.rewrite_to_sql_method = false
Sorry, something went wrong.
No branches or pull requests
We've encountered a weird bug here when using a
JSONB
column.if you have a where clause like
.where("event_metadata.metadata -> 'replaced' != 'true'")
The query will be replaced by
event_metadata.metadata - > 'replaced' != 'true'
notice the extra space between the
-
and>
This prevents the query from being run.
The text was updated successfully, but these errors were encountered: