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
1ef17f0a
Commit
1ef17f0a
authored
Jan 09, 2004
by
pem@mysql.comhem.se
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix BUG#2269: Lost connect if stored procedure called before USE
(And some minor correction of cursor open)
parent
c40e51f2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
8 deletions
+13
-8
sql/sp_head.cc
sql/sp_head.cc
+6
-4
sql/sp_rcontext.cc
sql/sp_rcontext.cc
+6
-3
sql/sp_rcontext.h
sql/sp_rcontext.h
+1
-1
No files found.
sql/sp_head.cc
View file @
1ef17f0a
...
...
@@ -286,6 +286,7 @@ sp_head::execute(THD *thd)
if
(
ctx
)
ctx
->
clear_handler
();
thd
->
query_error
=
0
;
do
{
sp_instr
*
i
;
...
...
@@ -318,10 +319,11 @@ sp_head::execute(THD *thd)
continue
;
}
}
}
while
(
ret
==
0
&&
!
thd
->
killed
);
}
while
(
ret
==
0
&&
!
thd
->
killed
&&
!
thd
->
query_error
);
DBUG_PRINT
(
"info"
,
(
"ret=%d killed=%d"
,
ret
,
thd
->
killed
));
if
(
thd
->
killed
)
DBUG_PRINT
(
"info"
,
(
"ret=%d killed=%d query_error=%d"
,
ret
,
thd
->
killed
,
thd
->
query_error
));
if
(
thd
->
killed
||
thd
->
query_error
)
ret
=
-
1
;
/* If the DB has changed, the pointer has changed too, but the
original thd->db will then have been freed */
...
...
@@ -1032,7 +1034,7 @@ sp_instr_copen::execute(THD *thd, uint *nextp)
res
=
-
1
;
else
res
=
exec_stmt
(
thd
,
lex
);
c
->
post_open
(
thd
,
(
res
==
0
?
TRUE
:
FALSE
));
c
->
post_open
(
thd
,
(
lex
?
TRUE
:
FALSE
));
}
*
nextp
=
m_ip
+
1
;
...
...
sql/sp_rcontext.cc
View file @
1ef17f0a
...
...
@@ -153,12 +153,15 @@ sp_cursor::pre_open(THD *thd)
}
void
sp_cursor
::
post_open
(
THD
*
thd
,
my_bool
isopen
)
sp_cursor
::
post_open
(
THD
*
thd
,
my_bool
was_opened
)
{
thd
->
net
.
no_send_eof
=
m_nseof
;
// Restore the originals
thd
->
protocol
=
m_oprot
;
m_isopen
=
isopen
;
m_current_row
=
m_prot
->
data
;
if
(
was_opened
)
{
m_isopen
=
was_opened
;
m_current_row
=
m_prot
->
data
;
}
}
int
...
...
sql/sp_rcontext.h
View file @
1ef17f0a
...
...
@@ -220,7 +220,7 @@ class sp_cursor : public Sql_alloc
LEX
*
pre_open
(
THD
*
thd
);
void
post_open
(
THD
*
thd
,
my_bool
isopen
);
post_open
(
THD
*
thd
,
my_bool
was_opened
);
int
close
(
THD
*
thd
);
...
...
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