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
85f19d5d
Commit
85f19d5d
authored
Jun 01, 2005
by
pem@mysql.comhem.se
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed BUG#10961: Stored procedures: crash if select * from dual
Have to catch errors from SELECT when opening a cursor.
parent
1061c412
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
73 additions
and
3 deletions
+73
-3
mysql-test/r/sp.result
mysql-test/r/sp.result
+29
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+29
-0
sql/protocol.h
sql/protocol.h
+2
-2
sql/sp_head.cc
sql/sp_head.cc
+13
-1
No files found.
mysql-test/r/sp.result
View file @
85f19d5d
...
...
@@ -3109,4 +3109,33 @@ select bug9559()|
bug9559()
-3
drop function bug9559|
drop procedure if exists bug10961|
create procedure bug10961()
begin
declare v char;
declare x int;
declare c cursor for select * from dual;
declare continue handler for sqlexception select x;
set x = 1;
open c;
set x = 2;
fetch c into v;
set x = 3;
close c;
end|
call bug10961()|
x
1
x
2
x
3
call bug10961()|
x
1
x
2
x
3
drop procedure bug10961|
drop table t1,t2;
mysql-test/t/sp.test
View file @
85f19d5d
...
...
@@ -3801,6 +3801,7 @@ call bug5963_2(1)|
drop
procedure
bug5963_2
|
drop
table
t3
|
#
# BUG#9559: Functions: Numeric Operations using -ve value gives incorrect
# results.
...
...
@@ -3820,6 +3821,34 @@ select bug9559()|
drop
function
bug9559
|
#
# BUG#10961: Stored procedures: crash if select * from dual
#
--
disable_warnings
drop
procedure
if
exists
bug10961
|
--
enable_warnings
# "select * from dual" results in an error, so the cursor will not open
create
procedure
bug10961
()
begin
declare
v
char
;
declare
x
int
;
declare
c
cursor
for
select
*
from
dual
;
declare
continue
handler
for
sqlexception
select
x
;
set
x
=
1
;
open
c
;
set
x
=
2
;
fetch
c
into
v
;
set
x
=
3
;
close
c
;
end
|
call
bug10961
()
|
call
bug10961
()
|
drop
procedure
bug10961
|
#
# BUG#NNNN: New bug synopsis
#
...
...
sql/protocol.h
View file @
85f19d5d
...
...
@@ -159,8 +159,8 @@ public:
MYSQL_ROWS
**
prev_record
;
ulong
row_count
;
Protocol_cursor
()
{}
Protocol_cursor
(
THD
*
thd_arg
,
MEM_ROOT
*
ini_alloc
)
:
Protocol_simple
(
thd_arg
),
alloc
(
ini_alloc
)
{}
Protocol_cursor
()
:
data
(
NULL
)
{}
Protocol_cursor
(
THD
*
thd_arg
,
MEM_ROOT
*
ini_alloc
)
:
Protocol_simple
(
thd_arg
),
alloc
(
ini_alloc
)
,
data
(
NULL
)
{}
bool
prepare_for_send
(
List
<
Item
>
*
item_list
)
{
row_count
=
0
;
...
...
sql/sp_head.cc
View file @
85f19d5d
...
...
@@ -1913,7 +1913,19 @@ sp_instr_copen::execute(THD *thd, uint *nextp)
else
res
=
lex_keeper
->
reset_lex_and_exec_core
(
thd
,
nextp
,
FALSE
,
this
);
c
->
post_open
(
thd
,
(
lex_keeper
?
TRUE
:
FALSE
));
/*
Work around the fact that errors in selects are not returned properly
(but instead converted into a warning), so if a condition handler
caught, we have lost the result code.
*/
if
(
!
res
)
{
uint
dummy1
,
dummy2
;
if
(
thd
->
spcont
->
found_handler
(
&
dummy1
,
&
dummy2
))
res
=
-
1
;
}
c
->
post_open
(
thd
,
(
lex_keeper
&&
!
res
?
TRUE
:
FALSE
));
}
DBUG_RETURN
(
res
);
...
...
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