0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-13 16:45:21 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/walblock.test
2024-05-27 12:59:10 +02:00

13 lines
225 B
Plaintext

CREATE TABLE t1(x, y);
INSERT INTO t1 VALUES(1, 2);
INSERT INTO t1 VALUES(3, 4);
INSERT INTO t1 VALUES(5, 6);
PRAGMA journal_mode = wal;
INSERT INTO t1 VALUES(7, 8);
BEGIN;
INSERT INTO t1 VALUES(9, 10);