Loading mysql-test/r/select.result +1 −0 Original line number Diff line number Diff line Loading @@ -2922,6 +2922,7 @@ a b b select * from t1 inner join t2 using (a); a b b 1 10 10 drop table t1, t2; create table t1 (a int, c int); create table t2 (b int); create table t3 (b int, a int); Loading mysql-test/t/select.test +3 −0 Original line number Diff line number Diff line Loading @@ -2499,6 +2499,9 @@ insert into t2 values (1,10); # both queries should produce the same result select * from t1 inner join t2 using (A); select * from t1 inner join t2 using (a); drop table t1, t2; # # Bug #12943 Incorrect nesting of [INNER| CROSS] JOIN due to unspecified # associativity in the parser. # Loading Loading
mysql-test/r/select.result +1 −0 Original line number Diff line number Diff line Loading @@ -2922,6 +2922,7 @@ a b b select * from t1 inner join t2 using (a); a b b 1 10 10 drop table t1, t2; create table t1 (a int, c int); create table t2 (b int); create table t3 (b int, a int); Loading
mysql-test/t/select.test +3 −0 Original line number Diff line number Diff line Loading @@ -2499,6 +2499,9 @@ insert into t2 values (1,10); # both queries should produce the same result select * from t1 inner join t2 using (A); select * from t1 inner join t2 using (a); drop table t1, t2; # # Bug #12943 Incorrect nesting of [INNER| CROSS] JOIN due to unspecified # associativity in the parser. # Loading