mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-13 12:28:30 +00:00
ad79ef48a2
* add tests * add bench
15 lines
319 B
Plaintext
15 lines
319 B
Plaintext
|
|
PRAGMA page_size = 1024;
|
|
PRAGMA auto_vacuum = 0;
|
|
|
|
CREATE TABLE t1(a PRIMARY KEY, b);
|
|
INSERT INTO t1 VALUES(1, randomblob(600));
|
|
INSERT INTO t1 VALUES(2, randomblob(600));
|
|
INSERT INTO t1 VALUES(3, randomblob(600));
|
|
|
|
|
|
PRAGMA journal_mode=DELETE;
|
|
PRAGMA cache_size=3;
|
|
UPDATE t1 SET b=randomblob(1000);
|
|
|