summaryrefslogtreecommitdiff
path: root/mysql-test/r/union.result
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-03-23 15:25:45 +0100
committerserg@serg.mylan <>2004-03-23 15:25:45 +0100
commit0d0910381a7ae928b48a4acf5e506945e732d346 (patch)
treec1adf4ac388c65492ec32d99a32e7fcc3517b917 /mysql-test/r/union.result
parent023b86b984e4f712b19d6feada0a88f24f1859f1 (diff)
parent99886df867b34cb8310e02b6a833ee58045d3e96 (diff)
downloadmariadb-git-0d0910381a7ae928b48a4acf5e506945e732d346.tar.gz
Merge bk-internal:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r--mysql-test/r/union.result10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result
index 5eb447ab223..c00b2732bd1 100644
--- a/mysql-test/r/union.result
+++ b/mysql-test/r/union.result
@@ -36,8 +36,6 @@ a b
1 a
2 b
3 c
-3 c
-3 c
4 d
5 f
6 e
@@ -48,8 +46,6 @@ select 0,'#' union select a,b from t1 union all select a,b from t2 union select
1 a
2 b
3 c
-3 c
-3 c
4 d
5 f
6 e
@@ -920,5 +916,9 @@ select * from t1 UNION select * from t1 UNION ALL select * from t1;
i
1
1
-1
drop table t1;
+select 1 as a union all select 1 union all select 2 union select 1 union all select 2;
+a
+1
+2
+2