0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-01-31 17:52:35 +00:00
ad hoc ad79ef48a2 libsql wal tests (#1408)
* add tests

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

10 lines
239 B
Plaintext

PRAGMA page_size = 1024;
PRAGMA journal_mode = WAL;
PRAGMA wal_autocheckpoint = 128;
PRAGMA journal_size_limit = 16384;
CREATE TABLE t1(a BLOB, b BLOB, UNIQUE(a, b));
INSERT INTO t1 VALUES(randomblob(10), randomblob(1000));