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
It's not possible to send any database query containing the "In" function, receiving an "Invalid get index 'in' (on base: Dictionary)" error.
The problem is caused by line 171 of query.gd: Filters.IN: filter_str = "in" Which should instead be: Filters.IN: filter_str = "In"
Filters.IN: filter_str = "in"
Filters.IN: filter_str = "In"
Line 90 should also be changed accordingly, from: "eq", "neq", "lt", "gt", "lte", "gte", "like", "ilike", "Is", "in", "fts", "plfts", "phfts", "wfts": to: "eq", "neq", "lt", "gt", "lte", "gte", "like", "ilike", "Is", "In", "fts", "plfts", "phfts", "wfts":
"eq", "neq", "lt", "gt", "lte", "gte", "like", "ilike", "Is", "in", "fts", "plfts", "phfts", "wfts":
"eq", "neq", "lt", "gt", "lte", "gte", "like", "ilike", "Is", "In", "fts", "plfts", "phfts", "wfts":
The lowercase in is causing the issue.
The text was updated successfully, but these errors were encountered:
Have you found issues with the other methods aswell? Or is it just the "In" method?
Sorry, something went wrong.
No branches or pull requests
It's not possible to send any database query containing the "In" function, receiving an "Invalid get index 'in' (on base: Dictionary)" error.
The problem is caused by line 171 of query.gd:
Filters.IN: filter_str = "in"
Which should instead be:
Filters.IN: filter_str = "In"
Line 90 should also be changed accordingly, from:
"eq", "neq", "lt", "gt", "lte", "gte", "like", "ilike", "Is", "in", "fts", "plfts", "phfts", "wfts":
to:
"eq", "neq", "lt", "gt", "lte", "gte", "like", "ilike", "Is", "In", "fts", "plfts", "phfts", "wfts":
The lowercase in is causing the issue.
The text was updated successfully, but these errors were encountered: