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
SQLite.swift version: 0.13.3 Xcode: 13.3.1 Swift Package manager FTS4.swift: 106
arguments.append("removeDiacritics=\(removeDiacritics ? 1 : 0)".quote())
Should be: arguments.append("remove_diacritics=\(removeDiacritics ? 1 : 0)".quote())
arguments.append("remove_diacritics=\(removeDiacritics ? 1 : 0)".quote())
https://www.sqlite.org/fts3.html#tokenizer
The text was updated successfully, but these errors were encountered:
removeDiacritics => remove_diacritics
c42167f
https://www.sqlite.org/fts3.html#tokenizer Closes #1128
@KennethFra thanks, fixed!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
SQLite.swift version: 0.13.3
Xcode: 13.3.1
Swift Package manager
FTS4.swift: 106
arguments.append("removeDiacritics=\(removeDiacritics ? 1 : 0)".quote())
Should be:
arguments.append("remove_diacritics=\(removeDiacritics ? 1 : 0)".quote())
https://www.sqlite.org/fts3.html#tokenizer
The text was updated successfully, but these errors were encountered: