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
0f16578b
Commit
0f16578b
authored
Mar 21, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COLLATE precedence bug has been fixed:
"a LIKE b COLLATE c" worked as "(a LIKE b) COLLATE c" which is not right
parent
2dc27531
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
sql/sql_yacc.yy
sql/sql_yacc.yy
+5
-5
No files found.
sql/sql_yacc.yy
View file @
0f16578b
...
@@ -2023,11 +2023,6 @@ expr_expr:
...
@@ -2023,11 +2023,6 @@ expr_expr:
{ $$= new Item_date_add_interval($1,$3,$4,0); }
{ $$= new Item_date_add_interval($1,$3,$4,0); }
| expr '-' interval_expr interval
| expr '-' interval_expr interval
{ $$= new Item_date_add_interval($1,$3,$4,1); }
{ $$= new Item_date_add_interval($1,$3,$4,1); }
| expr COLLATE_SYM ident_or_text
{
$$= new Item_func_set_collation($1,new Item_string($3.str,$3.length,
YYTHD->variables.thd_charset));
}
;
;
/* expressions that begin with 'expr' that do NOT follow IN_SYM */
/* expressions that begin with 'expr' that do NOT follow IN_SYM */
...
@@ -2137,6 +2132,11 @@ interval_expr:
...
@@ -2137,6 +2132,11 @@ interval_expr:
simple_expr:
simple_expr:
simple_ident
simple_ident
| simple_expr COLLATE_SYM ident_or_text %prec NEG
{
$$= new Item_func_set_collation($1,new Item_string($3.str,$3.length,
YYTHD->variables.thd_charset));
}
| literal
| literal
| param_marker
| param_marker
| '@' ident_or_text SET_VAR expr
| '@' ident_or_text SET_VAR expr
...
...
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