hideaki-t / sqlite-fts-python

A Python binding of SQLite Full Text Search Tokenizer
MIT License
45 stars 11 forks source link

support FTS5 #5

Open hideaki-t opened 8 years ago

hideaki-t commented 8 years ago

see https://www.sqlite.org/fts5.html peewee also supports FTS5 https://github.com/coleifer/peewee/blob/master/playhouse/sqlite_ext.py

FTS5 API has been changed @ SQLite 3.20.0, consider support both old and new APIs.

karlb commented 2 years ago

Is the FTS5 support working as intended? If so, shouldn't this issue be closed?

hideaki-t commented 2 years ago

I think I kept this open as Fts5ExtensionApi functions are not fully supported. currently only xTokenize is supported.

maybe I can close this, and open another issue to cover more Fts5ExtensionApi functions.