mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
10 lines
239 B
Plaintext
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));
|
|
|