hideaki-t / sqlite-fts-python

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

cannot enable 2-arg fts3_tokenizer on SQLite 3.20.0 #9

Closed hideaki-t closed 7 years ago

hideaki-t commented 7 years ago

the internal flag value was changed at 3.20.0 (and it seems the value was changed back to the previous value)

It is private value defined in sqliteInt.h, so it is better to avoid using it. 2-args fts3_tokenizer should be enabled by the public API(sqlite3_db_config) as this module did before. The change may break a compatibility with APSW built with its Amalgamation method.

hideaki-t commented 7 years ago

fixed in 0.4.9.2