From 2b45bfe35565326fecc70c8875bbc8f5f1d5a53d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Nison?= Date: Wed, 18 Sep 2024 19:16:52 +0000 Subject: [PATCH] Enables FTS5 by default --- Makefile | 1 + test/test_fts5.js | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 test/test_fts5.js diff --git a/Makefile b/Makefile index dc9e4872..ae9cbbc0 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,7 @@ SQLITE_COMPILATION_FLAGS = \ -DSQLITE_DISABLE_LFS \ -DSQLITE_ENABLE_FTS3 \ -DSQLITE_ENABLE_FTS3_PARENTHESIS \ + -DSQLITE_ENABLE_FTS5 \ -DSQLITE_THREADSAFE=0 \ -DSQLITE_ENABLE_NORMALIZE diff --git a/test/test_fts5.js b/test/test_fts5.js new file mode 100644 index 00000000..a6f4cd76 --- /dev/null +++ b/test/test_fts5.js @@ -0,0 +1,28 @@ +exports.test = function(sql, assert){ + // Create a database + var db = new sql.Database(); + + // Create table, insert data + db.exec("CREATE VIRTUAL TABLE Test_Fts5 USING fts5(text);"); + db.exec("INSERT INTO Test_Fts5 VALUES ('welcome home'), ('wonderful'), ('thanks for all the fish');"); + + var res = db.exec("SELECT * FROM Test_Fts5 WHERE Test_Fts5 MATCH 'welcome';"); + assert.deepEqual(res[0].values, [["welcome home"]], "full text search results"); + + db.close(); +}; + +if (module == require.main) { + const target_file = process.argv[2]; + const sql_loader = require('./load_sql_lib'); + sql_loader(target_file).then((sql)=>{ + require('test').run({ + 'test errors': function(assert){ + exports.test(sql, assert); + } + }); + }) + .catch((e)=>{ + console.error(e); + }); +}