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
36207f80
Commit
36207f80
authored
Feb 06, 2007
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-4.1-maint
into pilot.mysql.com:/home/msvensson/mysql/mysql-4.1-maint
parents
d69e5063
3f06339d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
sql/sql_prepare.cc
sql/sql_prepare.cc
+6
-5
No files found.
sql/sql_prepare.cc
View file @
36207f80
...
...
@@ -1781,8 +1781,9 @@ static void reset_stmt_params(Prepared_statement *stmt)
packet_length Query string length, including terminator character.
*/
void
mysql_stmt_execute
(
THD
*
thd
,
char
*
packet
,
uint
packet_length
)
void
mysql_stmt_execute
(
THD
*
thd
,
char
*
packet
_arg
,
uint
packet_length
)
{
uchar
*
packet
=
(
uchar
*
)
packet_arg
;
// gcc 4.0 stgrict-aliasing
ulong
stmt_id
=
uint4korr
(
packet
);
/*
Query text for binary log, or empty string if the query is not put into
...
...
@@ -1790,7 +1791,7 @@ void mysql_stmt_execute(THD *thd, char *packet, uint packet_length)
*/
String
expanded_query
;
#ifndef EMBEDDED_LIBRARY
uchar
*
packet_end
=
(
uchar
*
)
packet
+
packet_length
-
1
;
uchar
*
packet_end
=
packet
+
packet_length
-
1
;
#endif
Prepared_statement
*
stmt
;
DBUG_ENTER
(
"mysql_stmt_execute"
);
...
...
@@ -1816,9 +1817,9 @@ void mysql_stmt_execute(THD *thd, char *packet, uint packet_length)
#ifndef EMBEDDED_LIBRARY
if
(
stmt
->
param_count
)
{
uchar
*
null_array
=
(
uchar
*
)
packet
;
if
(
setup_conversion_functions
(
stmt
,
(
uchar
**
)
&
packet
,
packet_end
)
||
stmt
->
set_params
(
stmt
,
null_array
,
(
uchar
*
)
packet
,
packet_end
,
uchar
*
null_array
=
packet
;
if
(
setup_conversion_functions
(
stmt
,
&
packet
,
packet_end
)
||
stmt
->
set_params
(
stmt
,
null_array
,
packet
,
packet_end
,
&
expanded_query
))
goto
set_params_data_err
;
}
...
...
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