mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-13 12:28:30 +00:00
ad79ef48a2
* add tests * add bench
13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
|
|
BEGIN;
|
|
CREATE VIRTUAL TABLE ft USING fts3(a, b, c);
|
|
INSERT INTO ft VALUES('one', 'one', 'one');
|
|
COMMIT;
|
|
|
|
|
|
SELECT * FROM ft WHERE ft MATCH 'b:one'
|
|
|
|
|
|
SELECT quote(root) FROM ft_segdir;
|
|
|