1
Fork 0
kantodb/testdata/sql/transaction_commit.slt

17 lines
309 B
Text
Raw Normal View History

2025-03-27 13:45:43 -06:00
statement ok
CREATE TABLE myschema.mytable (mycolumn BIGINT NOT NULL, PRIMARY KEY(mycolumn));
statement ok
START TRANSACTION ISOLATION LEVEL REPEATABLE READ;
statement ok
INSERT INTO kanto.myschema.mytable (mycolumn) VALUES (42);
statement ok
COMMIT;
query I
SELECT * from kanto.myschema.mytable;
----
42