mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-13 12:28:30 +00:00
ad79ef48a2
* add tests * add bench
28 lines
546 B
Plaintext
28 lines
546 B
Plaintext
|
|
PRAGMA auto_vacuum=OFF;
|
|
PRAGMA page_size = 1024;
|
|
PRAGMA journal_mode = wal;
|
|
CREATE TABLE c1(x, y, z);
|
|
INSERT INTO c1 VALUES(1, 2, 3);
|
|
|
|
|
|
INSERT INTO c1 VALUES(4, 5, 6);
|
|
INSERT INTO c1 VALUES(7, 8, 9);
|
|
|
|
|
|
SELECT * FROM c1
|
|
|
|
PRAGMA main.journal_mode
|
|
PRAGMA main.journal_mode = delete
|
|
|
|
PRAGMA auto_vacuum=OFF;
|
|
PRAGMA journal_mode = wal;
|
|
CREATE TABLE y1(a PRIMARY KEY, b UNIQUE, c);
|
|
INSERT INTO y1 VALUES('a', 'b', 'c');
|
|
INSERT INTO y1 VALUES('d', 'e', 'f');
|
|
|
|
|
|
UPDATE y1 SET c='g' WHERE a='d';
|
|
PRAGMA wal_checkpoint;
|
|
|