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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
9c21006f
Commit
9c21006f
authored
Apr 12, 2005
by
pem@mysql.comhem.se
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed BUG#7185: Stored procedure crash if identifier is AVG
parent
e0e281ec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
2 deletions
+22
-2
mysql-test/r/sp.result
mysql-test/r/sp.result
+6
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+14
-0
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
No files found.
mysql-test/r/sp.result
View file @
9c21006f
...
@@ -2844,4 +2844,10 @@ drop procedure bug6900|
...
@@ -2844,4 +2844,10 @@ drop procedure bug6900|
drop procedure bug9074|
drop procedure bug9074|
drop procedure bug6900_9074|
drop procedure bug6900_9074|
drop table t3|
drop table t3|
drop procedure if exists avg|
create procedure avg ()
begin
end|
call avg ()|
drop procedure avg|
drop table t1,t2;
drop table t1,t2;
mysql-test/t/sp.test
View file @
9c21006f
...
@@ -3481,6 +3481,20 @@ drop procedure bug6900_9074|
...
@@ -3481,6 +3481,20 @@ drop procedure bug6900_9074|
drop
table
t3
|
drop
table
t3
|
#
# BUG#7185: Stored procedure crash if identifier is AVG
#
--
disable_warnings
drop
procedure
if
exists
avg
|
--
enable_warnings
create
procedure
avg
()
begin
end
|
call
avg
()
|
drop
procedure
avg
|
#
#
# BUG#NNNN: New bug synopsis
# BUG#NNNN: New bug synopsis
#
#
...
...
sql/sql_yacc.yy
View file @
9c21006f
...
@@ -1328,12 +1328,12 @@ clear_privileges:
...
@@ -1328,12 +1328,12 @@ clear_privileges:
;
;
sp_name:
sp_name:
IDENT_sys '.' IDENT_sys
ident '.' ident
{
{
$$= new sp_name($1, $3);
$$= new sp_name($1, $3);
$$->init_qname(YYTHD);
$$->init_qname(YYTHD);
}
}
|
IDENT_sys
|
ident
{
{
$$= sp_name_current_db_new(YYTHD, $1);
$$= sp_name_current_db_new(YYTHD, $1);
}
}
...
...
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