summaryrefslogtreecommitdiff
path: root/mysql-test/main/create_select_tmp.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/create_select_tmp.result')
-rw-r--r--mysql-test/main/create_select_tmp.result20
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/main/create_select_tmp.result b/mysql-test/main/create_select_tmp.result
new file mode 100644
index 00000000000..f499e539baf
--- /dev/null
+++ b/mysql-test/main/create_select_tmp.result
@@ -0,0 +1,20 @@
+drop table if exists t1, t2;
+CREATE TABLE t1 ( a int );
+INSERT INTO t1 VALUES (1),(2),(1);
+CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
+ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
+select * from t2;
+ERROR 42S02: Table 'test.t2' doesn't exist
+CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
+ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
+select * from t2;
+ERROR 42S02: Table 'test.t2' doesn't exist
+CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
+ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
+select * from t2;
+ERROR 42S02: Table 'test.t2' doesn't exist
+CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
+ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
+select * from t2;
+ERROR 42S02: Table 'test.t2' doesn't exist
+drop table t1;