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
11ec4175
Commit
11ec4175
authored
Feb 01, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/extern/mysql/bk/mysql-5.0
into mysql.com:/extern/mysql/work/bug15011/mysql-5.0
parents
8a7bbefc
6643f320
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
81 additions
and
1 deletion
+81
-1
mysql-test/r/sp.result
mysql-test/r/sp.result
+19
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+31
-0
sql/sp_rcontext.cc
sql/sp_rcontext.cc
+31
-1
No files found.
mysql-test/r/sp.result
View file @
11ec4175
...
@@ -4497,4 +4497,23 @@ drop procedure if exists bug15231_1|
...
@@ -4497,4 +4497,23 @@ drop procedure if exists bug15231_1|
drop procedure if exists bug15231_2|
drop procedure if exists bug15231_2|
drop procedure if exists bug15231_3|
drop procedure if exists bug15231_3|
drop procedure if exists bug15231_4|
drop procedure if exists bug15231_4|
drop procedure if exists bug15011|
create table t3 (c1 int primary key)|
insert into t3 values (1)|
create procedure bug15011()
deterministic
begin
declare continue handler for 1062
select 'Outer' as 'Handler';
begin
declare continue handler for 1062
select 'Inner' as 'Handler';
insert into t3 values (1);
end;
end|
call bug15011()|
Handler
Inner
drop procedure bug15011|
drop table t3|
drop table t1,t2;
drop table t1,t2;
mysql-test/t/sp.test
View file @
11ec4175
...
@@ -5283,6 +5283,37 @@ drop procedure if exists bug15231_3|
...
@@ -5283,6 +5283,37 @@ drop procedure if exists bug15231_3|
drop
procedure
if
exists
bug15231_4
|
drop
procedure
if
exists
bug15231_4
|
#
# BUG#15011: error handler in nested block not activated
#
--
disable_warnings
drop
procedure
if
exists
bug15011
|
--
enable_warnings
create
table
t3
(
c1
int
primary
key
)
|
insert
into
t3
values
(
1
)
|
create
procedure
bug15011
()
deterministic
begin
declare
continue
handler
for
1062
select
'Outer'
as
'Handler'
;
begin
declare
continue
handler
for
1062
select
'Inner'
as
'Handler'
;
insert
into
t3
values
(
1
);
end
;
end
|
call
bug15011
()
|
drop
procedure
bug15011
|
drop
table
t3
|
#
#
# BUG#NNNN: New bug synopsis
# BUG#NNNN: New bug synopsis
#
#
...
...
sql/sp_rcontext.cc
View file @
11ec4175
...
@@ -164,6 +164,33 @@ sp_rcontext::set_return_value(THD *thd, Item *return_value_item)
...
@@ -164,6 +164,33 @@ sp_rcontext::set_return_value(THD *thd, Item *return_value_item)
#define IS_NOT_FOUND_CONDITION(S) ((S)[0] == '0' && (S)[1] == '2')
#define IS_NOT_FOUND_CONDITION(S) ((S)[0] == '0' && (S)[1] == '2')
#define IS_EXCEPTION_CONDITION(S) ((S)[0] != '0' || (S)[1] > '2')
#define IS_EXCEPTION_CONDITION(S) ((S)[0] != '0' || (S)[1] > '2')
/*
Find a handler for the given errno.
This is called from all error message functions (e.g. push_warning,
net_send_error, et al) when a sp_rcontext is in effect. If a handler
is found, no error is sent, and the the SP execution loop will instead
invoke the found handler.
This might be called several times before we get back to the execution
loop, so m_hfound can be >= 0 if a handler has already been found.
(In which case we don't search again - the first found handler will
be used.)
Handlers are pushed on the stack m_handler, with the latest/innermost
one on the top; we then search for matching handlers from the top and
down.
We search through all the handlers, looking for the most specific one
(sql_errno more specific than sqlstate more specific than the rest).
Note that mysql error code handlers is a MySQL extension, not part of
the standard.
SYNOPSIS
sql_errno The error code
level Warning level
RETURN
1 if a handler was found, m_hfound is set to its index (>= 0)
0 if not found, m_hfound is -1
*/
bool
bool
sp_rcontext
::
find_handler
(
uint
sql_errno
,
sp_rcontext
::
find_handler
(
uint
sql_errno
,
MYSQL_ERROR
::
enum_warning_level
level
)
MYSQL_ERROR
::
enum_warning_level
level
)
...
@@ -174,11 +201,13 @@ sp_rcontext::find_handler(uint sql_errno,
...
@@ -174,11 +201,13 @@ sp_rcontext::find_handler(uint sql_errno,
const
char
*
sqlstate
=
mysql_errno_to_sqlstate
(
sql_errno
);
const
char
*
sqlstate
=
mysql_errno_to_sqlstate
(
sql_errno
);
int
i
=
m_hcount
,
found
=
-
1
;
int
i
=
m_hcount
,
found
=
-
1
;
/* Search handlers from the latest (innermost) to the oldest (outermost) */
while
(
i
--
)
while
(
i
--
)
{
{
sp_cond_type_t
*
cond
=
m_handler
[
i
].
cond
;
sp_cond_type_t
*
cond
=
m_handler
[
i
].
cond
;
int
j
=
m_ihsp
;
int
j
=
m_ihsp
;
/* Check active handlers, to avoid invoking one recursively */
while
(
j
--
)
while
(
j
--
)
if
(
m_in_handler
[
j
]
==
m_handler
[
i
].
handler
)
if
(
m_in_handler
[
j
]
==
m_handler
[
i
].
handler
)
break
;
break
;
...
@@ -188,7 +217,8 @@ sp_rcontext::find_handler(uint sql_errno,
...
@@ -188,7 +217,8 @@ sp_rcontext::find_handler(uint sql_errno,
switch
(
cond
->
type
)
switch
(
cond
->
type
)
{
{
case
sp_cond_type_t
:
:
number
:
case
sp_cond_type_t
:
:
number
:
if
(
sql_errno
==
cond
->
mysqlerr
)
if
(
sql_errno
==
cond
->
mysqlerr
&&
(
found
<
0
||
m_handler
[
found
].
cond
->
type
>
sp_cond_type_t
::
number
))
found
=
i
;
// Always the most specific
found
=
i
;
// Always the most specific
break
;
break
;
case
sp_cond_type_t
:
:
state
:
case
sp_cond_type_t
:
:
state
:
...
...
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