0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-03-07 10:46:19 +00:00
libsql/libsql-wal/tests/assets/fixtures/temptable3.test
ad hoc ad79ef48a2 libsql wal tests ()
* add tests

* add bench
2024-05-24 13:59:17 +00:00

20 lines
423 B
Plaintext

PRAGMA cache_size = 1;
PRAGMA page_size = 1024;
PRAGMA auto_vacuum = 2;
CREATE TABLE t1(x);
INSERT INTO t1 VALUES( randomblob(800) );
INSERT INTO t1 VALUES( randomblob(800) );
CREATE TABLE t2(x);
PRAGMA integrity_check;
PRAGMA cache_size = 1;
PRAGMA auto_vacuum = 2;
CREATE TABLE t1(x);
CREATE TABLE t2(x UNIQUE);
INSERT INTO t2 VALUES(1), (2), (3);
DROP TABLE t1;
PRAGMA integrity_check;