summaryrefslogtreecommitdiff
path: root/mysql-test/r/union.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r--mysql-test/r/union.result14
1 files changed, 0 insertions, 14 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result
index 23ed06dee6a..512517991e6 100644
--- a/mysql-test/r/union.result
+++ b/mysql-test/r/union.result
@@ -879,17 +879,3 @@ d 444 d 454
NULL NULL f 666
NULL NULL g 777
drop table t1;
-create table t1 ( id int, name char(10) not null, name2 char(10) not null ) engine=innodb;
-insert into t1 values(1,'first','fff'),(2,'second','sss'),(3,'third','ttt');
-select name2 from t1 union all select name from t1 union all select id from t1;
-name2
-fff
-sss
-ttt
-first
-second
-third
-1
-2
-3
-drop table t1;