16 lines
265 B
Text
16 lines
265 B
Text
statement ok
|
|
CREATE TABLE myschema.mytable (mycolumn BIGINT NOT NULL, PRIMARY KEY(mycolumn));
|
|
|
|
statement ok
|
|
BEGIN;
|
|
|
|
statement ok
|
|
INSERT INTO kanto.myschema.mytable (mycolumn) VALUES (42);
|
|
|
|
statement ok
|
|
COMMIT;
|
|
|
|
query I
|
|
SELECT * from kanto.myschema.mytable;
|
|
----
|
|
42
|