Fixed fts tokenizer missing

This commit is contained in:
M66B 2022-09-27 13:32:15 +02:00
parent f37c1edba3
commit 48432d0eb0
1 changed files with 2 additions and 3 deletions

View File

@ -42,7 +42,7 @@ public class Fts4DbHelper extends SQLiteOpenHelper {
private static Fts4DbHelper instance = null; private static Fts4DbHelper instance = null;
private static final int DATABASE_VERSION = 1; private static final int DATABASE_VERSION = 1;
private static final String DATABASE_NAME = "fts4.db"; private static final String DATABASE_NAME = "fts4a.db";
private Fts4DbHelper(Context context) { private Fts4DbHelper(Context context) {
super(context.getApplicationContext(), DATABASE_NAME, null, DATABASE_VERSION); super(context.getApplicationContext(), DATABASE_NAME, null, DATABASE_VERSION);
@ -75,8 +75,7 @@ public class Fts4DbHelper extends SQLiteOpenHelper {
", `notes`" + ", `notes`" +
", notindexed=`account`" + ", notindexed=`account`" +
", notindexed=`folder`" + ", notindexed=`folder`" +
", notindexed=`time`" + ", notindexed=`time`)");
", tokenize=unicode61 \"remove_diacritics=2\")");
// https://www.sqlite.org/fts3.html#tokenizer // https://www.sqlite.org/fts3.html#tokenizer
// https://unicode.org/reports/tr29/ // https://unicode.org/reports/tr29/