mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
|
|
PRAGMA cache_size = 5;
|
|
|
|
|
|
CREATE TABLE t1(a, b, c);
|
|
INSERT INTO t1 VALUES(1, 2, 3);
|
|
|
|
|
|
CREATE TABLE t1(a, b, c);
|
|
INSERT INTO t1 VALUES($a, $b, $c);
|
|
INSERT INTO t1 VALUES($c, $b, $a);
|
|
|