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
2c82b5a9
Commit
2c82b5a9
authored
Nov 20, 2006
by
gkodinov/kgeorge@macbook.gmz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
5.0-opt -> 5.1-opt merge fixed.
parent
98911707
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+0
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+3
-4
No files found.
mysql-test/t/disabled.def
View file @
2c82b5a9
...
...
@@ -32,4 +32,3 @@ rpl_multi_engine : BUG#22583 2006-09-23 lars
#ndb_binlog_ddl_multi : BUG#18976 2006-04-10 kent CRBR: multiple binlog, second binlog may miss schema log events
ndb_binlog_discover : bug#21806 2006-08-24
ndb_autodiscover3 : bug#21806
udf : for GKodinov to fix. Your fix for #21809 stopped working in 5.1 after the merge.
sql/sql_yacc.yy
View file @
2c82b5a9
...
...
@@ -6372,11 +6372,10 @@ function_call_generic:
}
}
/* Temporary placing the result of find_udf in $3 */
$<udf>$= udf;
lex->current_select->udf_list.push_front(udf);
#endif
}
opt
_expr_list ')'
udf
_expr_list ')'
{
THD *thd= YYTHD;
LEX *lex= Lex;
...
...
@@ -6401,7 +6400,7 @@ function_call_generic:
{
#ifdef HAVE_DLOPEN
/* Retrieving the result of find_udf */
udf_func *udf
= $<udf>3
;
udf_func *udf;
LEX *lex= Lex;
if (NULL != (udf= lex->current_select->udf_list.pop()))
...
...
@@ -6427,7 +6426,7 @@ function_call_generic:
YYABORT;
}
}
| ident '.' ident '('
udf
_expr_list ')'
| ident '.' ident '('
opt
_expr_list ')'
{
THD *thd= YYTHD;
Create_qfunc *builder;
...
...
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