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

17 lines
338 B
Plaintext

CREATE TABLE t4(a, b);
INSERT INTO t4 VALUES('Eden', 1955);
BEGIN;
INSERT INTO t4 VALUES('Macmillan', 1957);
INSERT INTO t4 VALUES('Douglas-Home', 1963);
INSERT INTO t4 VALUES('Wilson', 1964);
PRAGMA locking_mode = EXCLUSIVE;
SELECT * FROM t4;
PRAGMA locking_mode = EXCLUSIVE;
SELECT * FROM sqlite_master;