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
How can I add ts_vector query support?
It's choking on WHERE to_tsvector(unaccent(name)) @@ to_tsquery('portuguese', ':*')
WHERE to_tsvector(unaccent(name)) @@ to_tsquery('portuguese', ':*')
The text was updated successfully, but these errors were encountered:
Can you provide the full SQL? Which database and version does this SQL run on?
Sorry, something went wrong.
It's from the extension pg_trgm
Runs on postgres 9.6+
SELECT * FROM movies WHERE to_tsvector( unaccent ( NAME ) ) @@to_tsquery( 'portuguese', 'star:*' )
yeah, i have the similar problem SELECT * FROM table_name WHERE column1 @@ '$.key == "value"'
SELECT * FROM table_name WHERE column1 @@ '$.key == "value"'
I have the same problem using the tsvector and tsquery syntax
error: could not parse sql string: at or near \"@\": syntax error"
No branches or pull requests
How can I add ts_vector query support?
It's choking on
WHERE to_tsvector(unaccent(name)) @@ to_tsquery('portuguese', ':*')
The text was updated successfully, but these errors were encountered: