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
Describe the bug Cannot search strings with @ in it.
@
To Reproduce Steps to reproduce the behavior:
IDOLM@STER
Expected behavior The search should complete and not crash.
Screenshots
Desktop (please complete the following information):
Additional context The Rust error body:
Error { context: "Processing signal: SearchForRequest", source: Error { context: "Search request failed: query_str=IDOLM@STER, n=30", source: Query( SqlxError( Database( SqliteError { code: 1, message: "fts5: syntax error near \"@\"", }, ), ), ), }, }
As of SQLite FTS5, the string might be safer to be quoted. I guess this is also somehow related to #91.
Wrapping it with " seems to solve that:
"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Cannot search strings with
@
in it.To Reproduce
Steps to reproduce the behavior:
IDOLM@STER
Expected behavior
The search should complete and not crash.
Screenshots
Desktop (please complete the following information):
Additional context
The Rust error body:
As of SQLite FTS5, the string might be safer to be quoted. I guess this is also somehow related to #91.
Wrapping it with
"
seems to solve that:The text was updated successfully, but these errors were encountered: