Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d0f585f1
Commit
d0f585f1
authored
Sep 12, 2005
by
timour@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#12943 - post-merge fix
parent
54db60c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
mysql-test/r/select.result
mysql-test/r/select.result
+1
-0
mysql-test/t/select.test
mysql-test/t/select.test
+3
-0
No files found.
mysql-test/r/select.result
View file @
d0f585f1
...
...
@@ -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);
...
...
mysql-test/t/select.test
View file @
d0f585f1
...
...
@@ -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.
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment