You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
You can reproduce it in your demo: http://codeschool.github.io/sqlite-parser/demo/
The query CREATE VIRTUAL TABLE txt1 USING fts4(tokenize=unicode61); is parsed well.
The same but with tokenizer arguments e.g. CREATE VIRTUAL TABLE txt2 USING fts4(tokenize=unicode61 "remove_diacritics=2"); gets the error Syntax error found near Identifier (CREATE VIRTUAL TABLE Statement)
You can reproduce it in your demo: http://codeschool.github.io/sqlite-parser/demo/
The query
CREATE VIRTUAL TABLE txt1 USING fts4(tokenize=unicode61);
is parsed well.The same but with tokenizer arguments e.g.
CREATE VIRTUAL TABLE txt2 USING fts4(tokenize=unicode61 "remove_diacritics=2");
gets the errorSyntax error found near Identifier (CREATE VIRTUAL TABLE Statement)
Both examples have to be valid. I took them here: https://www.sqlite.org/fts3.html
The text was updated successfully, but these errors were encountered: