mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
10 lines
290 B
Text
10 lines
290 B
Text
connect con1, localhost, root,,;
|
|
connection default;
|
|
CREATE TABLE t1 ENGINE=InnoDB SELECT * FROM seq_1_to_100000000;
|
|
connection con1;
|
|
KILL QUERY @id;
|
|
disconnect con1;
|
|
connection default;
|
|
ERROR 70100: Query execution was interrupted
|
|
CREATE TABLE t1 (a SERIAL) ENGINE=InnoDB;
|
|
DROP TABLE t1;
|