summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/create_select.result
blob: 35acb2e265af0cabb1d375c69baa59e644fc18bc (plain)
1
2
3
4
5
CREATE TABLE t1 ENGINE=InnoDB SELECT * FROM seq_1_to_100000000;
KILL QUERY @id;
ERROR 70100: Query execution was interrupted
CREATE TABLE t1 (a SERIAL) ENGINE=InnoDB;
DROP TABLE t1;