mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
23 lines
501 B
Plaintext
23 lines
501 B
Plaintext
|
|
PRAGMA journal_mode = wal;
|
|
CREATE TABLE t1(zzz);
|
|
INSERT INTO t1 VALUES('abc');
|
|
INSERT INTO t1 VALUES('def');
|
|
|
|
|
|
PRAGMA page_size = 512;
|
|
PRAGMA journal_mode = wal;
|
|
PRAGMA wal_autocheckpoint = 0;
|
|
CREATE TABLE t1(zzz);
|
|
INSERT INTO t1 VALUES(randomblob( 500 * 9500 ));
|
|
PRAGMA user_version = 211;
|
|
|
|
|
|
PRAGMA page_size = 512;
|
|
PRAGMA journal_mode = wal;
|
|
PRAGMA wal_autocheckpoint = 0;
|
|
CREATE TABLE t1(zzz);
|
|
INSERT INTO t1 VALUES(randomblob( 5000 ));
|
|
PRAGMA user_version = 211;
|
|
|