mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
17 lines
294 B
Plaintext
17 lines
294 B
Plaintext
|
|
PRAGMA automatic_index = 0;
|
|
CREATE TABLE t1(a, b);
|
|
CREATE TABLE t2(c, d);
|
|
CREATE TABLE t3(e, f);
|
|
|
|
|
|
CREATE TABLE x1(x, y);
|
|
CREATE TABLE x2(a, b);
|
|
|
|
|
|
CREATE TABLE t1 (i1 TEXT);
|
|
CREATE TABLE t2 (i2 TEXT UNIQUE);
|
|
INSERT INTO t1 VALUES('0');
|
|
INSERT INTO t2 VALUES('0');
|
|
|