1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

fix of the small bug in UNION's

This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-10-16 22:27:47 +03:00
parent 6561faa10e
commit 0a242026a8
2 changed files with 8 additions and 6 deletions

View File

@@ -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