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
a42b3730
Commit
a42b3730
authored
Nov 17, 2005
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-review fixes (Bug#13524).
parent
c2a1c6c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
sql/sql_prepare.cc
sql/sql_prepare.cc
+12
-5
No files found.
sql/sql_prepare.cc
View file @
a42b3730
...
...
@@ -1827,13 +1827,16 @@ static bool init_param_array(Prepared_statement *stmt)
void
mysql_stmt_prepare
(
THD
*
thd
,
const
char
*
packet
,
uint
packet_length
)
{
Prepared_statement
*
stmt
=
new
Prepared_statement
(
thd
,
&
thd
->
protocol_prep
)
;
Prepared_statement
*
stmt
;
bool
error
;
DBUG_ENTER
(
"mysql_stmt_prepare"
);
DBUG_PRINT
(
"prep_query"
,
(
"%s"
,
packet
));
if
(
stmt
==
0
)
/* First of all clear possible warnings from the previous command */
mysql_reset_thd_for_next_command
(
thd
);
if
(
!
(
stmt
=
new
Prepared_statement
(
thd
,
&
thd
->
protocol_prep
)))
DBUG_VOID_RETURN
;
/* out of memory: error is set in Sql_alloc */
if
(
thd
->
stmt_map
.
insert
(
stmt
))
...
...
@@ -1842,7 +1845,6 @@ void mysql_stmt_prepare(THD *thd, const char *packet, uint packet_length)
DBUG_VOID_RETURN
;
/* out of memory */
}
mysql_reset_thd_for_next_command
(
thd
);
/* Reset warnings from previous command */
mysql_reset_errors
(
thd
,
0
);
sp_cache_flush_obsolete
(
&
thd
->
sp_proc_cache
);
...
...
@@ -2186,13 +2188,15 @@ void mysql_stmt_execute(THD *thd, char *packet_arg, uint packet_length)
packet
+=
9
;
/* stmt_id + 5 bytes of flags */
/* First of all clear possible warnings from the previous command */
mysql_reset_thd_for_next_command
(
thd
);
if
(
!
(
stmt
=
find_prepared_statement
(
thd
,
stmt_id
,
"mysql_stmt_execute"
)))
DBUG_VOID_RETURN
;
DBUG_PRINT
(
"exec_query"
,
(
"%s"
,
stmt
->
query
));
DBUG_PRINT
(
"info"
,(
"stmt: %p"
,
stmt
));
mysql_reset_thd_for_next_command
(
thd
);
sp_cache_flush_obsolete
(
&
thd
->
sp_proc_cache
);
sp_cache_flush_obsolete
(
&
thd
->
sp_func_cache
);
...
...
@@ -2312,6 +2316,7 @@ void mysql_stmt_fetch(THD *thd, char *packet, uint packet_length)
Server_side_cursor
*
cursor
;
DBUG_ENTER
(
"mysql_stmt_fetch"
);
/* First of all clear possible warnings from the previous command */
mysql_reset_thd_for_next_command
(
thd
);
statistic_increment
(
thd
->
status_var
.
com_stmt_fetch
,
&
LOCK_status
);
if
(
!
(
stmt
=
find_prepared_statement
(
thd
,
stmt_id
,
"mysql_stmt_fetch"
)))
...
...
@@ -2374,6 +2379,9 @@ void mysql_stmt_reset(THD *thd, char *packet)
Prepared_statement
*
stmt
;
DBUG_ENTER
(
"mysql_stmt_reset"
);
/* First of all clear possible warnings from the previous command */
mysql_reset_thd_for_next_command
(
thd
);
statistic_increment
(
thd
->
status_var
.
com_stmt_reset
,
&
LOCK_status
);
if
(
!
(
stmt
=
find_prepared_statement
(
thd
,
stmt_id
,
"mysql_stmt_reset"
)))
DBUG_VOID_RETURN
;
...
...
@@ -2388,7 +2396,6 @@ void mysql_stmt_reset(THD *thd, char *packet)
stmt
->
state
=
Query_arena
::
PREPARED
;
mysql_reset_thd_for_next_command
(
thd
);
send_ok
(
thd
);
DBUG_VOID_RETURN
;
...
...
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