Skip to content
New issue

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

Tokenizer: Unicode61 constructor uses incorrect spelling of 'remove_diacritics' #1128

Closed
KennethFra opened this issue Apr 26, 2022 · 1 comment · Fixed by #1129
Closed

Tokenizer: Unicode61 constructor uses incorrect spelling of 'remove_diacritics' #1128

KennethFra opened this issue Apr 26, 2022 · 1 comment · Fixed by #1129

Comments

@KennethFra
Copy link

KennethFra commented Apr 26, 2022

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

@jberkel
Copy link
Collaborator

jberkel commented Apr 27, 2022

@KennethFra thanks, fixed!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants