summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/create_select.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/r/create_select.result')
-rw-r--r--mysql-test/suite/innodb/r/create_select.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/r/create_select.result b/mysql-test/suite/innodb/r/create_select.result
new file mode 100644
index 00000000000..f5db880816e
--- /dev/null
+++ b/mysql-test/suite/innodb/r/create_select.result
@@ -0,0 +1,10 @@
+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;