mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
15 lines
409 B
Plaintext
15 lines
409 B
Plaintext
|
|
CREATE VIRTUAL TABLE t1 USING fts3(x);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES('We listened and looked sideways up!');
|
|
INSERT INTO t1 VALUES('Fear at my heart, as at a cup,');
|
|
INSERT INTO t1 VALUES('My life-blood seemed to sip!');
|
|
INSERT INTO t1 VALUES('The stars were dim, and thick the night');
|
|
COMMIT;
|
|
|
|
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES('The steersman''s face by his lamp gleamed white;');
|
|
|
|
COMMIT
|