mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
15 lines
432 B
Plaintext
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%';
|
|
|