1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove extraneous console trace output from previous check-in.

FossilOrigin-Name: c9f6e36d59fc8bf2bcef6fc14ff2e9ad3dfd972de94d4a71ff3f56134810a8ef
This commit is contained in:
stephan
2023-06-05 11:30:50 +00:00
parent c81dcaabe8
commit dc608d8a5f
3 changed files with 8 additions and 8 deletions

View File

@@ -3015,7 +3015,7 @@ self.sqlite3InitModule = sqlite3InitModule;
// Testing https://sqlite.org/forum/forumpost/40ce55bdf5
// with the exception that that post uses "external content"
// for the FTS index.
const db = new sqlite3.oo1.DB(':memory:','wt');
const db = new sqlite3.oo1.DB();//(':memory:','wt');
db.exec([
"create virtual table f using fts5 (path);",
"insert into f(path) values('abc'),('def'),('ghi');"