summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap_btree.result
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2002-10-16 22:27:47 +0300
committerunknown <Sinisa@sinisa.nasamreza.org>2002-10-16 22:27:47 +0300
commit620b2e6e8b42d62cecec69b696c9781faa86d29e (patch)
treefc2416590dbbeb05b27ffaf9e8c56d0df14016ae /mysql-test/r/heap_btree.result
parent61122db5251346e5cf9f8575a70ef97017541553 (diff)
downloadmariadb-git-620b2e6e8b42d62cecec69b696c9781faa86d29e.tar.gz
fix of the small bug in UNION's
mysql-test/r/heap_btree.result: I donno why this changed, aint my fault sql/sql_union.cc: fix of the small bug
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r--mysql-test/r/heap_btree.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/heap_btree.result b/mysql-test/r/heap_btree.result
index 0e8a32bd7b7..846a852738b 100644
--- a/mysql-test/r/heap_btree.result
+++ b/mysql-test/r/heap_btree.result
@@ -73,8 +73,8 @@ type=heap;
insert into t1 values (1,1),(2,2),(1,3),(2,4),(2,5),(2,6);
select * from t1 where x=1;
x y
-1 1
1 3
+1 1
select * from t1,t1 as t2 where t1.x=t2.y;
x y x y
1 1 1 1