1
Fork 0
kantodb/testdata/sql/unimplemented/mysql/unimplemented_replace_into.slt

5 lines
303 B
Text

statement ok
CREATE TABLE kanto.myschema.mytable (mycolumn BIGINT NOT NULL, PRIMARY KEY(mycolumn));
statement error ^External error: unimplemented_sql/54xqh7ornzpso: REPLACE INTO \(MySQL syntax\) or INSERT OR REPLACE \(SQLite syntax\)$
REPLACE INTO kanto.myschema.mytable (mycolumn) VALUES (42), (13);