mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
9 lines
207 B
Plaintext
9 lines
207 B
Plaintext
|
|
ATTACH 'test.db1' AS aux;
|
|
CREATE TABLE aux.t1(a INTEGER PRIMARY KEY, b);
|
|
INSERT INTO aux.t1 VALUES(1, NULL);
|
|
INSERT INTO aux.t1 VALUES(2, NULL);
|
|
INSERT INTO aux.t1 VALUES(9, NULL);
|
|
DETACH aux;
|
|
|