polardbxengine/mysql-test/suite/xengine/r/duplicate_table.result

12 lines
240 B
Plaintext

DROP TABLE IF EXISTS t;
CREATE TABLE t(id int primary key) engine=xengine;
INSERT INTO t values (1), (2), (3);
CREATE TABLE t(id int primary key) engine=xengine;
ERROR 42S01: Table 't' already exists
SELECT * FROM t;
id
1
2
3
DROP TABLE t;