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

18 lines
450 B
Text

statement ok
CREATE TABLE kanto.myschema.mytable (a BIGINT NOT NULL, b BIGINT);
statement ok
INSERT INTO kanto.myschema.mytable (a, b) VALUES (42, 7), (13, 34);
#statement ok
statement error ^External error: unimplemented/gs5muy13tu1uk: cannot delete from row_id tables yet$
DELETE FROM kanto.myschema.mytable;
#query I rowsort
#SELECT * FROM kanto.myschema.mytable;
#----
#
#query I rowsort
#SELECT count(*) FROM kanto.myschema.mytable;
#----
#0