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
The FTS5 search query Match syntax allows phrases to be searched for by, among other choices, using double quotes:
... MATCH '"one two three"' ... MATCH 'one + two + three' ... MATCH '"one two" + three' ... MATCH 'one.two.three'
If I turn on .debugPrintQueryParameterValues, I see that the string "Hi there" gets quoted as:
"Hi there"
MATCH '""Hi" "there""'
I think it should be quoted as
MATCH '"Hi there"'
This is with the current main branch head version of Blackbird.
There is a workaround, which is to use one of the alternative syntaxes, such as Hi.there.
Hi.there
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The FTS5 search query Match syntax allows phrases to be searched for by, among other choices, using double quotes:
If I turn on .debugPrintQueryParameterValues, I see that the string
"Hi there"
gets quoted as:I think it should be quoted as
This is with the current main branch head version of Blackbird.
There is a workaround, which is to use one of the alternative syntaxes, such as
Hi.there
.The text was updated successfully, but these errors were encountered: