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
ab0ff534
Commit
ab0ff534
authored
Apr 20, 2005
by
pem@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/usr/local/bk/mysql-5.0
into mysql.com:/home/pem/work/mysql-5.0
parents
32a87293
54dfe4a6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
62 additions
and
4 deletions
+62
-4
mysql-test/r/sp-error.result
mysql-test/r/sp-error.result
+11
-2
mysql-test/r/sp.result
mysql-test/r/sp.result
+9
-0
mysql-test/t/sp-error.test
mysql-test/t/sp-error.test
+14
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+16
-0
sql/share/errmsg.txt
sql/share/errmsg.txt
+1
-1
sql/sp_head.cc
sql/sp_head.cc
+1
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+10
-0
No files found.
mysql-test/r/sp-error.result
View file @
ab0ff534
...
...
@@ -457,9 +457,9 @@ ERROR 42S22: Unknown column 'aa' in 'order clause'
drop procedure bug2653_1|
drop procedure bug2653_2|
create procedure bug4344() drop procedure bug4344|
ERROR HY000: Can't drop a PROCEDURE from within another stored routine
ERROR HY000: Can't drop
or alter
a PROCEDURE from within another stored routine
create procedure bug4344() drop function bug4344|
ERROR HY000: Can't drop a FUNCTION from within another stored routine
ERROR HY000: Can't drop
or alter
a FUNCTION from within another stored routine
drop procedure if exists bug3294|
create procedure bug3294()
begin
...
...
@@ -585,4 +585,13 @@ end;
end;
end|
drop procedure bug9073|
create procedure bug7047()
alter procedure bug7047|
ERROR HY000: Can't drop or alter a PROCEDURE from within another stored routine
create function bug7047() returns int
begin
alter function bug7047;
return 0;
end|
ERROR HY000: Can't drop or alter a FUNCTION from within another stored routine
drop table t1|
mysql-test/r/sp.result
View file @
ab0ff534
...
...
@@ -2958,4 +2958,13 @@ select @x|
set global query_cache_size = @qcs1|
delete from t1|
drop function bug9902|
drop procedure if exists bug6898|
create procedure bug6898()
begin
goto label1;
label label1;
begin end;
goto label1;
end|
drop procedure bug6898|
drop table t1,t2;
mysql-test/t/sp-error.test
View file @
ab0ff534
...
...
@@ -817,6 +817,20 @@ end|
drop
procedure
bug9073
|
#
# BUG#7047: Stored procedure crash if alter procedure
#
--
error
ER_SP_NO_DROP_SP
create
procedure
bug7047
()
alter
procedure
bug7047
|
--
error
ER_SP_NO_DROP_SP
create
function
bug7047
()
returns
int
begin
alter
function
bug7047
;
return
0
;
end
|
#
# BUG#NNNN: New bug synopsis
#
...
...
mysql-test/t/sp.test
View file @
ab0ff534
...
...
@@ -3628,6 +3628,22 @@ delete from t1|
drop
function
bug9902
|
#
# BUG#6898: Stored procedure crash if GOTO statements exist
#
--
disable_warnings
drop
procedure
if
exists
bug6898
|
--
enable_warnings
create
procedure
bug6898
()
begin
goto
label1
;
label
label1
;
begin
end
;
goto
label1
;
end
|
drop
procedure
bug6898
|
#
# BUG#NNNN: New bug synopsis
#
...
...
sql/share/errmsg.txt
View file @
ab0ff534
...
...
@@ -5213,7 +5213,7 @@ ER_VIEW_INVALID
eng "View '%-.64s.%-.64s' references invalid table(s) or column(s) or function(s)"
rus "View '%-.64s.%-.64s' "
ER_SP_NO_DROP_SP
eng "Can't drop a %s from within another stored routine"
eng "Can't drop
or alter
a %s from within another stored routine"
ER_SP_GOTO_IN_HNDLR
eng "GOTO is not allowed in a stored procedure handler"
ER_TRG_ALREADY_EXISTS
...
...
sql/sp_head.cc
View file @
ab0ff534
...
...
@@ -1499,7 +1499,7 @@ sp_instr_jump::opt_shortcut_jump(sp_head *sp, sp_instr *start)
{
uint
ndest
;
if
(
start
==
i
)
if
(
start
==
i
||
this
==
i
)
break
;
ndest
=
i
->
opt_shortcut_jump
(
sp
,
start
);
if
(
ndest
==
dest
)
...
...
sql/sql_yacc.yy
View file @
ab0ff534
...
...
@@ -3305,6 +3305,11 @@ alter:
{
LEX *lex= Lex;
if (lex->sphead)
{
my_error(ER_SP_NO_DROP_SP, MYF(0), "PROCEDURE");
YYABORT;
}
bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
}
sp_a_chistics
...
...
@@ -3318,6 +3323,11 @@ alter:
{
LEX *lex= Lex;
if (lex->sphead)
{
my_error(ER_SP_NO_DROP_SP, MYF(0), "FUNCTION");
YYABORT;
}
bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
}
sp_a_chistics
...
...
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