0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-14 06:45:21 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/fts3ao.test
2024-05-27 12:59:10 +02:00

15 lines
432 B
Plaintext

SELECT snippet(t5, '[', ']') FROM t5 WHERE t5 MATCH 'the'
CREATE VIRTUAL TABLE t7 USING FTS4;
INSERT INTO t7 VALUES('coined by a German clinician');
SELECT count(*) FROM sqlite_master WHERE name LIKE 't7%';
SELECT count(*) FROM sqlite_master WHERE name LIKE 't8%';
ALTER TABLE t7 RENAME TO t8;
SELECT count(*) FROM sqlite_master WHERE name LIKE 't7%';
SELECT count(*) FROM sqlite_master WHERE name LIKE 't8%';