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
a24d4b99
Commit
a24d4b99
authored
Sep 23, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql into serg.mysql.com:/usr/home/serg/Abk/mysql
parents
ea2f0130
14d3ff6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
sql/sql_yacc.yy
sql/sql_yacc.yy
+6
-6
No files found.
sql/sql_yacc.yy
View file @
a24d4b99
...
@@ -1760,15 +1760,15 @@ join_table_list:
...
@@ -1760,15 +1760,15 @@ join_table_list:
| join_table_list INNER_SYM JOIN_SYM join_table ON expr
| join_table_list INNER_SYM JOIN_SYM join_table ON expr
{ add_join_on($4,$6); $$=$4; }
{ add_join_on($4,$6); $$=$4; }
| join_table_list INNER_SYM JOIN_SYM join_table
| join_table_list INNER_SYM JOIN_SYM join_table
{ Lex->db1=$1->db; Lex->table1=$1->
name
;
{ Lex->db1=$1->db; Lex->table1=$1->
alias
;
Lex->db2=$4->db; Lex->table2=$4->
name
; }
Lex->db2=$4->db; Lex->table2=$4->
alias
; }
USING '(' using_list ')'
USING '(' using_list ')'
{ add_join_on($4,$8); $$=$4; }
{ add_join_on($4,$8); $$=$4; }
| join_table_list LEFT opt_outer JOIN_SYM join_table ON expr
| join_table_list LEFT opt_outer JOIN_SYM join_table ON expr
{ add_join_on($5,$7); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
{ add_join_on($5,$7); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
| join_table_list LEFT opt_outer JOIN_SYM join_table
| join_table_list LEFT opt_outer JOIN_SYM join_table
{ Lex->db1=$1->db; Lex->table1=$1->
name
;
{ Lex->db1=$1->db; Lex->table1=$1->
alias
;
Lex->db2=$5->db; Lex->table2=$5->
name
; }
Lex->db2=$5->db; Lex->table2=$5->
alias
; }
USING '(' using_list ')'
USING '(' using_list ')'
{ add_join_on($5,$9); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
{ add_join_on($5,$9); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
| join_table_list NATURAL LEFT opt_outer JOIN_SYM join_table
| join_table_list NATURAL LEFT opt_outer JOIN_SYM join_table
...
@@ -1776,8 +1776,8 @@ join_table_list:
...
@@ -1776,8 +1776,8 @@ join_table_list:
| join_table_list RIGHT opt_outer JOIN_SYM join_table ON expr
| join_table_list RIGHT opt_outer JOIN_SYM join_table ON expr
{ add_join_on($1,$7); $1->outer_join|=JOIN_TYPE_RIGHT; $$=$1; }
{ add_join_on($1,$7); $1->outer_join|=JOIN_TYPE_RIGHT; $$=$1; }
| join_table_list RIGHT opt_outer JOIN_SYM join_table
| join_table_list RIGHT opt_outer JOIN_SYM join_table
{ Lex->db1=$1->db; Lex->table1=$1->
name
;
{ Lex->db1=$1->db; Lex->table1=$1->
alias
;
Lex->db2=$5->db; Lex->table2=$5->
name
; }
Lex->db2=$5->db; Lex->table2=$5->
alias
; }
USING '(' using_list ')'
USING '(' using_list ')'
{ add_join_on($1,$9); $1->outer_join|=JOIN_TYPE_RIGHT; $$=$1; }
{ add_join_on($1,$9); $1->outer_join|=JOIN_TYPE_RIGHT; $$=$1; }
| join_table_list NATURAL RIGHT opt_outer JOIN_SYM join_table
| join_table_list NATURAL RIGHT opt_outer JOIN_SYM join_table
...
...
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