0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-03-02 15:46:00 +00:00
libsql/libsql-wal/tests/assets/fixtures/walcrash3.test

10 lines
239 B
Plaintext
Raw Normal View History

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));