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
28ac1ba4
Commit
28ac1ba4
authored
Feb 11, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Manual merge.
parents
662510b9
e2f0e8f2
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
212 additions
and
146 deletions
+212
-146
client/mysql.cc
client/mysql.cc
+3
-1
client/mysqlcheck.c
client/mysqlcheck.c
+2
-1
client/mysqldump.c
client/mysqldump.c
+2
-1
client/mysqlimport.c
client/mysqlimport.c
+2
-1
sql/sql_parse.cc
sql/sql_parse.cc
+17
-1
sql/sql_prepare.cc
sql/sql_prepare.cc
+9
-1
tests/client_test.c
tests/client_test.c
+177
-140
No files found.
client/mysql.cc
View file @
28ac1ba4
...
@@ -839,7 +839,9 @@ static int get_options(int argc, char **argv)
...
@@ -839,7 +839,9 @@ static int get_options(int argc, char **argv)
opt_reconnect
=
0
;
opt_reconnect
=
0
;
connect_flag
=
0
;
/* Not in interactive mode */
connect_flag
=
0
;
/* Not in interactive mode */
}
}
if
(
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
if
(
strcmp
(
default_charset
,
charset_info
->
csname
)
&&
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
exit
(
1
);
exit
(
1
);
if
(
argc
>
1
)
if
(
argc
>
1
)
...
...
client/mysqlcheck.c
View file @
28ac1ba4
...
@@ -311,7 +311,8 @@ static int get_options(int *argc, char ***argv)
...
@@ -311,7 +311,8 @@ static int get_options(int *argc, char ***argv)
}
}
/* TODO: This variable is not yet used */
/* TODO: This variable is not yet used */
if
(
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
if
(
strcmp
(
default_charset
,
charset_info
->
csname
)
&&
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
exit
(
1
);
exit
(
1
);
if
(
*
argc
>
0
&&
opt_alldbs
)
if
(
*
argc
>
0
&&
opt_alldbs
)
...
...
client/mysqldump.c
View file @
28ac1ba4
...
@@ -536,7 +536,8 @@ static int get_options(int *argc, char ***argv)
...
@@ -536,7 +536,8 @@ static int get_options(int *argc, char ***argv)
my_progname
);
my_progname
);
return
(
1
);
return
(
1
);
}
}
if
(
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
if
(
strcmp
(
default_charset
,
charset_info
->
csname
)
&&
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
exit
(
1
);
exit
(
1
);
if
((
*
argc
<
1
&&
!
opt_alldbs
)
||
(
*
argc
>
0
&&
opt_alldbs
))
if
((
*
argc
<
1
&&
!
opt_alldbs
)
||
(
*
argc
>
0
&&
opt_alldbs
))
...
...
client/mysqlimport.c
View file @
28ac1ba4
...
@@ -238,7 +238,8 @@ static int get_options(int *argc, char ***argv)
...
@@ -238,7 +238,8 @@ static int get_options(int *argc, char ***argv)
fprintf
(
stderr
,
"You can't use --ignore (-i) and --replace (-r) at the same time.
\n
"
);
fprintf
(
stderr
,
"You can't use --ignore (-i) and --replace (-r) at the same time.
\n
"
);
return
(
1
);
return
(
1
);
}
}
if
(
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
if
(
strcmp
(
default_charset
,
charset_info
->
csname
)
&&
!
(
charset_info
=
get_charset_by_csname
(
default_charset
,
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
MY_CS_PRIMARY
,
MYF
(
MY_WME
))))
exit
(
1
);
exit
(
1
);
if
(
*
argc
<
2
)
if
(
*
argc
<
2
)
...
...
sql/sql_parse.cc
View file @
28ac1ba4
...
@@ -3845,7 +3845,23 @@ mysql_parse(THD *thd, char *inBuf, uint length)
...
@@ -3845,7 +3845,23 @@ mysql_parse(THD *thd, char *inBuf, uint length)
if
(
query_cache_send_result_to_client
(
thd
,
inBuf
,
length
)
<=
0
)
if
(
query_cache_send_result_to_client
(
thd
,
inBuf
,
length
)
<=
0
)
{
{
LEX
*
lex
=
lex_start
(
thd
,
(
uchar
*
)
inBuf
,
length
);
LEX
*
lex
=
lex_start
(
thd
,
(
uchar
*
)
inBuf
,
length
);
if
(
!
yyparse
((
void
*
)
thd
)
&&
!
thd
->
is_fatal_error
)
if
(
!
yyparse
((
void
*
)
thd
)
&&
!
thd
->
is_fatal_error
&&
/*
If this is not a multiple query, ensure that it has been
successfully parsed until the last character. This is to prevent
against a wrong (too big) length passed to mysql_real_query(),
mysql_prepare()... which can generate garbage characters at the
end. If the query was initially multiple, found_colon will be false
only when we are in the last query; this last query had already
been end-spaces-stripped by alloc_query() in dispatch_command(); as
end spaces are the only thing we accept at the end of a query, and
they have been stripped already, here we can require that nothing
remains after parsing.
*/
(
thd
->
lex
->
found_colon
||
(
char
*
)(
thd
->
lex
->
ptr
)
==
(
thd
->
query
+
thd
->
query_length
+
1
)
||
/* yyerror() will show the garbage chars to the user */
(
yyerror
(
"syntax error"
),
0
)))
{
{
#ifndef NO_EMBEDDED_ACCESS_CHECKS
#ifndef NO_EMBEDDED_ACCESS_CHECKS
if
(
mqh_used
&&
thd
->
user_connect
&&
if
(
mqh_used
&&
thd
->
user_connect
&&
...
...
sql/sql_prepare.cc
View file @
28ac1ba4
...
@@ -909,7 +909,15 @@ bool mysql_stmt_prepare(THD *thd, char *packet, uint packet_length)
...
@@ -909,7 +909,15 @@ bool mysql_stmt_prepare(THD *thd, char *packet, uint packet_length)
lex
->
safe_to_cache_query
=
0
;
lex
->
safe_to_cache_query
=
0
;
lex
->
param_count
=
0
;
lex
->
param_count
=
0
;
if
(
yyparse
((
void
*
)
thd
)
||
thd
->
is_fatal_error
||
send_prepare_results
(
stmt
))
if
(
yyparse
((
void
*
)
thd
)
||
thd
->
is_fatal_error
||
/*
Check for wrong (too big) length passed to mysql_prepare() resulting in
garbage at the end of the query. There is a similar check in mysql_parse().
*/
(
!
thd
->
lex
->
found_colon
&&
(
char
*
)(
thd
->
lex
->
ptr
)
!=
(
thd
->
query
+
thd
->
query_length
+
1
)
&&
/* yyerror() will show the garbage chars to the user */
(
yyerror
(
"syntax error"
),
1
))
||
send_prepare_results
(
stmt
))
goto
yyparse_err
;
goto
yyparse_err
;
lex_end
(
lex
);
lex_end
(
lex
);
...
...
tests/client_test.c
View file @
28ac1ba4
...
@@ -153,6 +153,17 @@ static void print_st_error(MYSQL_STMT *stmt, const char *msg)
...
@@ -153,6 +153,17 @@ static void print_st_error(MYSQL_STMT *stmt, const char *msg)
else
if
(
msg
)
fprintf
(
stderr
,
" [MySQL] %s
\n
"
,
msg
);
else
if
(
msg
)
fprintf
(
stderr
,
" [MySQL] %s
\n
"
,
msg
);
}
}
/*
This is to be what mysql_query() is for mysql_real_query(), for
mysql_prepare(): a variant without the 'length' parameter.
*/
MYSQL_STMT
*
STDCALL
mysql_simple_prepare
(
MYSQL
*
mysql
,
const
char
*
query
)
{
return
mysql_prepare
(
mysql
,
query
,
strlen
(
query
));
}
/********************************************************
/********************************************************
* connect to the server *
* connect to the server *
*********************************************************/
*********************************************************/
...
@@ -459,14 +470,14 @@ uint my_process_stmt_result(MYSQL_STMT *stmt)
...
@@ -459,14 +470,14 @@ uint my_process_stmt_result(MYSQL_STMT *stmt)
/********************************************************
/********************************************************
* process the stmt result set *
* process the stmt result set *
*********************************************************/
*********************************************************/
uint
my_stmt_result
(
const
char
*
buff
,
unsigned
long
length
)
uint
my_stmt_result
(
const
char
*
buff
)
{
{
MYSQL_STMT
*
stmt
;
MYSQL_STMT
*
stmt
;
uint
row_count
;
uint
row_count
;
int
rc
;
int
rc
;
fprintf
(
stdout
,
"
\n\n
%s"
,
buff
);
fprintf
(
stdout
,
"
\n\n
%s"
,
buff
);
stmt
=
mysql_
prepare
(
mysql
,
buff
,
length
);
stmt
=
mysql_
simple_prepare
(
mysql
,
buff
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -605,7 +616,7 @@ static void execute_prepare_query(const char *query, ulonglong exp_count)
...
@@ -605,7 +616,7 @@ static void execute_prepare_query(const char *query, ulonglong exp_count)
ulonglong
affected_rows
;
ulonglong
affected_rows
;
int
rc
;
int
rc
;
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -913,7 +924,7 @@ static void test_prepare_simple()
...
@@ -913,7 +924,7 @@ static void test_prepare_simple()
/* alter table */
/* alter table */
strmov
(
query
,
"ALTER TABLE test_prepare_simple ADD new char(20)"
);
strmov
(
query
,
"ALTER TABLE test_prepare_simple ADD new char(20)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -921,7 +932,7 @@ static void test_prepare_simple()
...
@@ -921,7 +932,7 @@ static void test_prepare_simple()
/* insert */
/* insert */
strmov
(
query
,
"INSERT INTO test_prepare_simple VALUES(?,?)"
);
strmov
(
query
,
"INSERT INTO test_prepare_simple VALUES(?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -929,7 +940,7 @@ static void test_prepare_simple()
...
@@ -929,7 +940,7 @@ static void test_prepare_simple()
/* update */
/* update */
strmov
(
query
,
"UPDATE test_prepare_simple SET id=? WHERE id=? AND name= ?"
);
strmov
(
query
,
"UPDATE test_prepare_simple SET id=? WHERE id=? AND name= ?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
3
);
verify_param_count
(
stmt
,
3
);
...
@@ -937,7 +948,7 @@ static void test_prepare_simple()
...
@@ -937,7 +948,7 @@ static void test_prepare_simple()
/* delete */
/* delete */
strmov
(
query
,
"DELETE FROM test_prepare_simple WHERE id=10"
);
strmov
(
query
,
"DELETE FROM test_prepare_simple WHERE id=10"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
60
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -948,7 +959,7 @@ static void test_prepare_simple()
...
@@ -948,7 +959,7 @@ static void test_prepare_simple()
/* delete */
/* delete */
strmov
(
query
,
"DELETE FROM test_prepare_simple WHERE id=?"
);
strmov
(
query
,
"DELETE FROM test_prepare_simple WHERE id=?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -957,7 +968,7 @@ static void test_prepare_simple()
...
@@ -957,7 +968,7 @@ static void test_prepare_simple()
/* select */
/* select */
strmov
(
query
,
"SELECT * FROM test_prepare_simple WHERE id=? AND name= ?"
);
strmov
(
query
,
"SELECT * FROM test_prepare_simple WHERE id=? AND name= ?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -995,7 +1006,7 @@ static void test_prepare_field_result()
...
@@ -995,7 +1006,7 @@ static void test_prepare_field_result()
/* insert */
/* insert */
strmov
(
query
,
"SELECT int_c,var_c,date_c as date,ts_c,char_c FROM \
strmov
(
query
,
"SELECT int_c,var_c,date_c as date,ts_c,char_c FROM \
test_prepare_field_result as t1 WHERE int_c=?"
);
test_prepare_field_result as t1 WHERE int_c=?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -1043,11 +1054,11 @@ static void test_prepare_syntax()
...
@@ -1043,11 +1054,11 @@ static void test_prepare_syntax()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO test_prepare_syntax VALUES(?"
);
strmov
(
query
,
"INSERT INTO test_prepare_syntax VALUES(?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init_r
(
stmt
);
mystmt_init_r
(
stmt
);
strmov
(
query
,
"SELECT id,name FROM test_prepare_syntax WHERE id=? AND WHERE"
);
strmov
(
query
,
"SELECT id,name FROM test_prepare_syntax WHERE id=? AND WHERE"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init_r
(
stmt
);
mystmt_init_r
(
stmt
);
/* now fetch the results ..*/
/* now fetch the results ..*/
...
@@ -1093,7 +1104,7 @@ static void test_prepare()
...
@@ -1093,7 +1104,7 @@ static void test_prepare()
/* insert by prepare */
/* insert by prepare */
strxmov
(
query
,
"INSERT INTO my_prepare VALUES(?,?,?,?,?,?,?)"
,
NullS
);
strxmov
(
query
,
"INSERT INTO my_prepare VALUES(?,?,?,?,?,?,?)"
,
NullS
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
7
);
verify_param_count
(
stmt
,
7
);
...
@@ -1157,9 +1168,9 @@ static void test_prepare()
...
@@ -1157,9 +1168,9 @@ static void test_prepare()
myquery
(
rc
);
myquery
(
rc
);
/* test the results now, only one row should exists */
/* test the results now, only one row should exists */
assert
(
tiny_data
==
(
char
)
my_stmt_result
(
"SELECT * FROM my_prepare"
,
50
));
assert
(
tiny_data
==
(
char
)
my_stmt_result
(
"SELECT * FROM my_prepare"
));
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM my_prepare"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM my_prepare"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -1264,7 +1275,7 @@ static void test_double_compare()
...
@@ -1264,7 +1275,7 @@ static void test_double_compare()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"UPDATE test_double_compare SET col1=100 WHERE col1 = ? AND col2 = ? AND COL3 = ?"
);
strmov
(
query
,
"UPDATE test_double_compare SET col1=100 WHERE col1 = ? AND col2 = ? AND COL3 = ?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
3
);
verify_param_count
(
stmt
,
3
);
...
@@ -1345,11 +1356,11 @@ static void test_null()
...
@@ -1345,11 +1356,11 @@ static void test_null()
/* insert by prepare, wrong column name */
/* insert by prepare, wrong column name */
strmov
(
query
,
"INSERT INTO test_null(col3,col2) VALUES(?,?)"
);
strmov
(
query
,
"INSERT INTO test_null(col3,col2) VALUES(?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init_r
(
stmt
);
mystmt_init_r
(
stmt
);
strmov
(
query
,
"INSERT INTO test_null(col1,col2) VALUES(?,?)"
);
strmov
(
query
,
"INSERT INTO test_null(col1,col2) VALUES(?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -1391,7 +1402,7 @@ static void test_null()
...
@@ -1391,7 +1402,7 @@ static void test_null()
myquery
(
rc
);
myquery
(
rc
);
nData
*=
2
;
nData
*=
2
;
assert
(
nData
==
my_stmt_result
(
"SELECT * FROM test_null"
,
30
));
assert
(
nData
==
my_stmt_result
(
"SELECT * FROM test_null"
));
/* Fetch results */
/* Fetch results */
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
...
@@ -1401,7 +1412,7 @@ static void test_null()
...
@@ -1401,7 +1412,7 @@ static void test_null()
bind
[
0
].
is_null
=
&
is_null
[
0
];
bind
[
0
].
is_null
=
&
is_null
[
0
];
bind
[
1
].
is_null
=
&
is_null
[
1
];
bind
[
1
].
is_null
=
&
is_null
[
1
];
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_null"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_null"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -1473,9 +1484,9 @@ static void test_fetch_null()
...
@@ -1473,9 +1484,9 @@ static void test_fetch_null()
strmov
((
char
*
)
query
,
"SELECT * FROM test_fetch_null"
);
strmov
((
char
*
)
query
,
"SELECT * FROM test_fetch_null"
);
assert
(
3
==
my_stmt_result
(
query
,
50
));
assert
(
3
==
my_stmt_result
(
query
));
stmt
=
mysql_
prepare
(
mysql
,
query
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -1514,7 +1525,7 @@ static void test_select_version()
...
@@ -1514,7 +1525,7 @@ static void test_select_version()
myheader
(
"test_select_version"
);
myheader
(
"test_select_version"
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT @@version"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT @@version"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -1536,7 +1547,7 @@ static void test_select_simple()
...
@@ -1536,7 +1547,7 @@ static void test_select_simple()
myheader
(
"test_select_simple"
);
myheader
(
"test_select_simple"
);
stmt
=
mysql_
prepare
(
mysql
,
"SHOW TABLES FROM mysql"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SHOW TABLES FROM mysql"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -1628,7 +1639,7 @@ static void test_select_prepare()
...
@@ -1628,7 +1639,7 @@ static void test_select_prepare()
rc
=
mysql_commit
(
mysql
);
rc
=
mysql_commit
(
mysql
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_select"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_select"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -1658,7 +1669,7 @@ static void test_select_prepare()
...
@@ -1658,7 +1669,7 @@ static void test_select_prepare()
rc
=
mysql_commit
(
mysql
);
rc
=
mysql_commit
(
mysql
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_select"
,
25
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_select"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -1713,7 +1724,7 @@ static void test_select()
...
@@ -1713,7 +1724,7 @@ static void test_select()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"SELECT * FROM test_select WHERE id=? AND name=?"
);
strmov
(
query
,
"SELECT * FROM test_select WHERE id=? AND name=?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -1772,7 +1783,7 @@ session_id char(9) NOT NULL, \
...
@@ -1772,7 +1783,7 @@ session_id char(9) NOT NULL, \
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"SELECT * FROM test_select WHERE session_id = ?"
);
strmov
(
query
,
"SELECT * FROM test_select WHERE session_id = ?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -1850,7 +1861,7 @@ static void test_bug1180()
...
@@ -1850,7 +1861,7 @@ static void test_bug1180()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"SELECT * FROM test_select WHERE ?=
\"
1111
\"
and session_id =
\"
abc
\"
"
);
strmov
(
query
,
"SELECT * FROM test_select WHERE ?=
\"
1111
\"
and session_id =
\"
abc
\"
"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -1930,7 +1941,7 @@ static void test_bug1644()
...
@@ -1930,7 +1941,7 @@ static void test_bug1644()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO foo_dfr VALUES (?,?,?,? )"
);
strmov
(
query
,
"INSERT INTO foo_dfr VALUES (?,?,?,? )"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
4
);
verify_param_count
(
stmt
,
4
);
...
@@ -2028,7 +2039,7 @@ static void test_select_show()
...
@@ -2028,7 +2039,7 @@ static void test_select_show()
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_show(id int(4) NOT NULL primary key, name char(2))"
);
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_show(id int(4) NOT NULL primary key, name char(2))"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"show columns from test_show"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"show columns from test_show"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -2039,11 +2050,11 @@ static void test_select_show()
...
@@ -2039,11 +2050,11 @@ static void test_select_show()
my_process_stmt_result
(
stmt
);
my_process_stmt_result
(
stmt
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"show tables from mysql like ?"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"show tables from mysql like ?"
);
mystmt_init_r
(
stmt
);
mystmt_init_r
(
stmt
);
strxmov
(
query
,
"show tables from "
,
current_db
,
" like
\'
test_show
\'
"
,
NullS
);
strxmov
(
query
,
"show tables from "
,
current_db
,
" like
\'
test_show
\'
"
,
NullS
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -2052,7 +2063,7 @@ static void test_select_show()
...
@@ -2052,7 +2063,7 @@ static void test_select_show()
my_process_stmt_result
(
stmt
);
my_process_stmt_result
(
stmt
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"describe test_show"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"describe test_show"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -2061,7 +2072,7 @@ static void test_select_show()
...
@@ -2061,7 +2072,7 @@ static void test_select_show()
my_process_stmt_result
(
stmt
);
my_process_stmt_result
(
stmt
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"show keys from test_show"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"show keys from test_show"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -2113,7 +2124,7 @@ static void test_simple_update()
...
@@ -2113,7 +2124,7 @@ static void test_simple_update()
/* insert by prepare */
/* insert by prepare */
strmov
(
query
,
"UPDATE test_update SET col2=? WHERE col1=?"
);
strmov
(
query
,
"UPDATE test_update SET col2=? WHERE col1=?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -2188,11 +2199,11 @@ static void test_long_data()
...
@@ -2188,11 +2199,11 @@ static void test_long_data()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO test_long_data(col1,col2) VALUES(?)"
);
strmov
(
query
,
"INSERT INTO test_long_data(col1,col2) VALUES(?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init_r
(
stmt
);
mystmt_init_r
(
stmt
);
strmov
(
query
,
"INSERT INTO test_long_data(col1,col2,col3) VALUES(?,?,?)"
);
strmov
(
query
,
"INSERT INTO test_long_data(col1,col2,col3) VALUES(?,?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
3
);
verify_param_count
(
stmt
,
3
);
...
@@ -2280,7 +2291,7 @@ static void test_long_data_str()
...
@@ -2280,7 +2291,7 @@ static void test_long_data_str()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO test_long_data_str VALUES(?,?)"
);
strmov
(
query
,
"INSERT INTO test_long_data_str VALUES(?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -2371,7 +2382,7 @@ static void test_long_data_str1()
...
@@ -2371,7 +2382,7 @@ static void test_long_data_str1()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO test_long_data_str VALUES(?,?)"
);
strmov
(
query
,
"INSERT INTO test_long_data_str VALUES(?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -2460,7 +2471,7 @@ static void test_long_data_bin()
...
@@ -2460,7 +2471,7 @@ static void test_long_data_bin()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO test_long_data_bin VALUES(?,?)"
);
strmov
(
query
,
"INSERT INTO test_long_data_bin VALUES(?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -2555,7 +2566,7 @@ static void test_simple_delete()
...
@@ -2555,7 +2566,7 @@ static void test_simple_delete()
/* insert by prepare */
/* insert by prepare */
strmov
(
query
,
"DELETE FROM test_simple_delete WHERE col1=? AND col2=? AND col3=100"
);
strmov
(
query
,
"DELETE FROM test_simple_delete WHERE col1=? AND col2=? AND col3=100"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -2635,7 +2646,7 @@ static void test_update()
...
@@ -2635,7 +2646,7 @@ static void test_update()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO test_update(col2,col3) VALUES(?,?)"
);
strmov
(
query
,
"INSERT INTO test_update(col2,col3) VALUES(?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -2665,7 +2676,7 @@ static void test_update()
...
@@ -2665,7 +2676,7 @@ static void test_update()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
strmov
(
query
,
"UPDATE test_update SET col2=? WHERE col3=?"
);
strmov
(
query
,
"UPDATE test_update SET col2=? WHERE col3=?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -2731,7 +2742,7 @@ static void test_prepare_noparam()
...
@@ -2731,7 +2742,7 @@ static void test_prepare_noparam()
/* insert by prepare */
/* insert by prepare */
strmov
(
query
,
"INSERT INTO my_prepare VALUES(10,'venu')"
);
strmov
(
query
,
"INSERT INTO my_prepare VALUES(10,'venu')"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -2810,7 +2821,7 @@ static void test_bind_result()
...
@@ -2810,7 +2821,7 @@ static void test_bind_result()
bind
[
1
].
length
=
&
length1
;
bind
[
1
].
length
=
&
length1
;
bind
[
1
].
is_null
=
&
is_null
[
1
];
bind
[
1
].
is_null
=
&
is_null
[
1
];
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_bind_result"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_bind_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -2931,7 +2942,7 @@ static void test_bind_result_ext()
...
@@ -2931,7 +2942,7 @@ static void test_bind_result_ext()
bind
[
7
].
length
=
&
bLength
;
bind
[
7
].
length
=
&
bLength
;
bind
[
7
].
buffer_length
=
sizeof
(
bData
);
bind
[
7
].
buffer_length
=
sizeof
(
bData
);
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_bind_result"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_bind_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -3056,7 +3067,7 @@ static void test_bind_result_ext1()
...
@@ -3056,7 +3067,7 @@ static void test_bind_result_ext1()
bind
[
i
].
length
=
&
length
[
i
];
bind
[
i
].
length
=
&
length
[
i
];
}
}
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_bind_result"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_bind_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -3116,7 +3127,7 @@ static void bind_fetch(int row_count)
...
@@ -3116,7 +3127,7 @@ static void bind_fetch(int row_count)
MYSQL_BIND
bind
[
7
];
MYSQL_BIND
bind
[
7
];
my_bool
is_null
[
7
];
my_bool
is_null
[
7
];
stmt
=
mysql_
prepare
(
mysql
,
"INSERT INTO test_bind_fetch VALUES(?,?,?,?,?,?,?)"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"INSERT INTO test_bind_fetch VALUES(?,?,?,?,?,?,?)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
7
);
verify_param_count
(
stmt
,
7
);
...
@@ -3149,9 +3160,9 @@ static void bind_fetch(int row_count)
...
@@ -3149,9 +3160,9 @@ static void bind_fetch(int row_count)
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
assert
(
row_count
==
(
int
)
assert
(
row_count
==
(
int
)
my_stmt_result
(
"SELECT * FROM test_bind_fetch"
,
50
));
my_stmt_result
(
"SELECT * FROM test_bind_fetch"
));
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_bind_fetch"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_bind_fetch"
);
myquery
(
rc
);
myquery
(
rc
);
for
(
i
=
0
;
i
<
(
int
)
array_elements
(
bind
);
i
++
)
for
(
i
=
0
;
i
<
(
int
)
array_elements
(
bind
);
i
++
)
...
@@ -3319,9 +3330,9 @@ static void test_fetch_date()
...
@@ -3319,9 +3330,9 @@ static void test_fetch_date()
bind
[
6
].
buffer_length
=
sizeof
(
ts_6
);
bind
[
6
].
buffer_length
=
sizeof
(
ts_6
);
bind
[
6
].
length
=
&
ts6_length
;
bind
[
6
].
length
=
&
ts6_length
;
assert
(
1
==
my_stmt_result
(
"SELECT * FROM test_bind_result"
,
50
));
assert
(
1
==
my_stmt_result
(
"SELECT * FROM test_bind_result"
));
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_bind_result"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_bind_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -3649,7 +3660,7 @@ static void test_prepare_ext()
...
@@ -3649,7 +3660,7 @@ static void test_prepare_ext()
/* insert by prepare - all integers */
/* insert by prepare - all integers */
strmov
(
query
,(
char
*
)
"INSERT INTO test_prepare_ext(c1,c2,c3,c4,c5,c6) VALUES(?,?,?,?,?,?)"
);
strmov
(
query
,(
char
*
)
"INSERT INTO test_prepare_ext(c1,c2,c3,c4,c5,c6) VALUES(?,?,?,?,?,?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
6
);
verify_param_count
(
stmt
,
6
);
...
@@ -3702,7 +3713,7 @@ static void test_prepare_ext()
...
@@ -3702,7 +3713,7 @@ static void test_prepare_ext()
rc
=
mysql_commit
(
mysql
);
rc
=
mysql_commit
(
mysql
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT c1,c2,c3,c4,c5,c6 FROM test_prepare_ext"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT c1,c2,c3,c4,c5,c6 FROM test_prepare_ext"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
/* get the result */
/* get the result */
...
@@ -3848,7 +3859,7 @@ static void test_insert()
...
@@ -3848,7 +3859,7 @@ static void test_insert()
myquery
(
rc
);
myquery
(
rc
);
/* insert by prepare */
/* insert by prepare */
stmt
=
mysql_
prepare
(
mysql
,
"INSERT INTO test_prep_insert VALUES(?,?)"
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"INSERT INTO test_prep_insert VALUES(?,?)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -3920,7 +3931,7 @@ static void test_prepare_resultset()
...
@@ -3920,7 +3931,7 @@ static void test_prepare_resultset()
name varchar(50),extra double)"
);
name varchar(50),extra double)"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_prepare_resultset"
,
60
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_prepare_resultset"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -4032,25 +4043,25 @@ static void test_stmt_close()
...
@@ -4032,25 +4043,25 @@ static void test_stmt_close()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"ALTER TABLE test_stmt_close ADD name varchar(20)"
);
strmov
(
query
,
"ALTER TABLE test_stmt_close ADD name varchar(20)"
);
stmt1
=
mysql_
prepare
(
lmysql
,
query
,
70
);
stmt1
=
mysql_
simple_prepare
(
lmysql
,
query
);
mystmt_init
(
stmt1
);
mystmt_init
(
stmt1
);
verify_param_count
(
stmt1
,
0
);
verify_param_count
(
stmt1
,
0
);
strmov
(
query
,
"INSERT INTO test_stmt_close(id) VALUES(?)"
);
strmov
(
query
,
"INSERT INTO test_stmt_close(id) VALUES(?)"
);
stmt_x
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt_x
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt_x
);
mystmt_init
(
stmt_x
);
verify_param_count
(
stmt_x
,
1
);
verify_param_count
(
stmt_x
,
1
);
strmov
(
query
,
"UPDATE test_stmt_close SET id=? WHERE id=?"
);
strmov
(
query
,
"UPDATE test_stmt_close SET id=? WHERE id=?"
);
stmt3
=
mysql_
prepare
(
lmysql
,
query
,
70
);
stmt3
=
mysql_
simple_prepare
(
lmysql
,
query
);
mystmt_init
(
stmt3
);
mystmt_init
(
stmt3
);
verify_param_count
(
stmt3
,
2
);
verify_param_count
(
stmt3
,
2
);
strmov
(
query
,
"SELECT * FROM test_stmt_close WHERE id=?"
);
strmov
(
query
,
"SELECT * FROM test_stmt_close WHERE id=?"
);
stmt2
=
mysql_
prepare
(
lmysql
,
query
,
70
);
stmt2
=
mysql_
simple_prepare
(
lmysql
,
query
);
mystmt_init
(
stmt2
);
mystmt_init
(
stmt2
);
verify_param_count
(
stmt2
,
1
);
verify_param_count
(
stmt2
,
1
);
...
@@ -4117,7 +4128,7 @@ static void test_set_variable()
...
@@ -4117,7 +4128,7 @@ static void test_set_variable()
mysql_autocommit
(
mysql
,
TRUE
);
mysql_autocommit
(
mysql
,
TRUE
);
stmt1
=
mysql_
prepare
(
mysql
,
"show variables like 'max_error_count'"
,
50
);
stmt1
=
mysql_
simple_prepare
(
mysql
,
"show variables like 'max_error_count'"
);
mystmt_init
(
stmt1
);
mystmt_init
(
stmt1
);
get_bind
[
0
].
buffer_type
=
MYSQL_TYPE_STRING
;
get_bind
[
0
].
buffer_type
=
MYSQL_TYPE_STRING
;
...
@@ -4148,7 +4159,7 @@ static void test_set_variable()
...
@@ -4148,7 +4159,7 @@ static void test_set_variable()
rc
=
mysql_fetch
(
stmt1
);
rc
=
mysql_fetch
(
stmt1
);
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
rc
==
MYSQL_NO_DATA
);
stmt
=
mysql_
prepare
(
mysql
,
"set max_error_count=?"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"set max_error_count=?"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
set_bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
set_bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
...
@@ -4223,7 +4234,7 @@ static void test_insert_meta()
...
@@ -4223,7 +4234,7 @@ static void test_insert_meta()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"INSERT INTO test_prep_insert VALUES(10,'venu1','test')"
);
strmov
(
query
,
"INSERT INTO test_prep_insert VALUES(10,'venu1','test')"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -4234,7 +4245,7 @@ static void test_insert_meta()
...
@@ -4234,7 +4245,7 @@ static void test_insert_meta()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
strmov
(
query
,
"INSERT INTO test_prep_insert VALUES(?,'venu',?)"
);
strmov
(
query
,
"INSERT INTO test_prep_insert VALUES(?,'venu',?)"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -4286,7 +4297,7 @@ static void test_update_meta()
...
@@ -4286,7 +4297,7 @@ static void test_update_meta()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"UPDATE test_prep_update SET col1=10, col2='venu1' WHERE col3='test'"
);
strmov
(
query
,
"UPDATE test_prep_update SET col1=10, col2='venu1' WHERE col3='test'"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -4297,7 +4308,7 @@ static void test_update_meta()
...
@@ -4297,7 +4308,7 @@ static void test_update_meta()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
strmov
(
query
,
"UPDATE test_prep_update SET col1=?, col2='venu' WHERE col3=?"
);
strmov
(
query
,
"UPDATE test_prep_update SET col1=?, col2='venu' WHERE col3=?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -4353,7 +4364,7 @@ static void test_select_meta()
...
@@ -4353,7 +4364,7 @@ static void test_select_meta()
myquery
(
rc
);
myquery
(
rc
);
strmov
(
query
,
"SELECT * FROM test_prep_select WHERE col1=10"
);
strmov
(
query
,
"SELECT * FROM test_prep_select WHERE col1=10"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
0
);
verify_param_count
(
stmt
,
0
);
...
@@ -4362,7 +4373,7 @@ static void test_select_meta()
...
@@ -4362,7 +4373,7 @@ static void test_select_meta()
mytest_r
(
result
);
mytest_r
(
result
);
strmov
(
query
,
"SELECT col1, col3 from test_prep_select WHERE col1=? AND col3='test' AND col2= ?"
);
strmov
(
query
,
"SELECT col1, col3 from test_prep_select WHERE col1=? AND col3='test' AND col2= ?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
120
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
2
);
verify_param_count
(
stmt
,
2
);
...
@@ -4497,10 +4508,10 @@ static void test_multi_stmt()
...
@@ -4497,10 +4508,10 @@ static void test_multi_stmt()
rc
=
mysql_query
(
mysql
,
"INSERT INTO test_multi_table values(10,'mysql')"
);
rc
=
mysql_query
(
mysql
,
"INSERT INTO test_multi_table values(10,'mysql')"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_multi_table WHERE id = ?"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_multi_table WHERE id = ?"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
stmt2
=
mysql_
prepare
(
mysql
,
"UPDATE test_multi_table SET name='updated' WHERE id=10"
,
100
);
stmt2
=
mysql_
simple_prepare
(
mysql
,
"UPDATE test_multi_table SET name='updated' WHERE id=10"
);
mystmt_init
(
stmt2
);
mystmt_init
(
stmt2
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -4542,7 +4553,7 @@ static void test_multi_stmt()
...
@@ -4542,7 +4553,7 @@ static void test_multi_stmt()
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
rc
==
MYSQL_NO_DATA
);
/* alter the table schema now */
/* alter the table schema now */
stmt1
=
mysql_
prepare
(
mysql
,
"DELETE FROM test_multi_table WHERE id = ? AND name=?"
,
100
);
stmt1
=
mysql_
simple_prepare
(
mysql
,
"DELETE FROM test_multi_table WHERE id = ? AND name=?"
);
mystmt_init
(
stmt1
);
mystmt_init
(
stmt1
);
verify_param_count
(
stmt1
,
2
);
verify_param_count
(
stmt1
,
2
);
...
@@ -4582,7 +4593,7 @@ static void test_multi_stmt()
...
@@ -4582,7 +4593,7 @@ static void test_multi_stmt()
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
0
==
my_stmt_result
(
"SELECT * FROM test_multi_table"
,
50
));
assert
(
0
==
my_stmt_result
(
"SELECT * FROM test_multi_table"
));
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt2
);
mysql_stmt_close
(
stmt2
);
...
@@ -4629,7 +4640,7 @@ static void test_manual_sample()
...
@@ -4629,7 +4640,7 @@ static void test_manual_sample()
/* Prepare a insert query with 3 parameters */
/* Prepare a insert query with 3 parameters */
strmov
(
query
,
"INSERT INTO test_table(col1,col2,col3) values(?,?,?)"
);
strmov
(
query
,
"INSERT INTO test_table(col1,col2,col3) values(?,?,?)"
);
if
(
!
(
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
)))
if
(
!
(
stmt
=
mysql_
simple_prepare
(
mysql
,
query
)))
{
{
fprintf
(
stderr
,
"
\n
prepare, insert failed"
);
fprintf
(
stderr
,
"
\n
prepare, insert failed"
);
fprintf
(
stderr
,
"
\n
%s"
,
mysql_error
(
mysql
));
fprintf
(
stderr
,
"
\n
%s"
,
mysql_error
(
mysql
));
...
@@ -4733,7 +4744,7 @@ static void test_manual_sample()
...
@@ -4733,7 +4744,7 @@ static void test_manual_sample()
fprintf
(
stderr
,
"
\n
%s"
,
mysql_stmt_error
(
stmt
));
fprintf
(
stderr
,
"
\n
%s"
,
mysql_stmt_error
(
stmt
));
exit
(
0
);
exit
(
0
);
}
}
assert
(
2
==
my_stmt_result
(
"SELECT * FROM test_table"
,
50
));
assert
(
2
==
my_stmt_result
(
"SELECT * FROM test_table"
));
/* DROP THE TABLE */
/* DROP THE TABLE */
if
(
mysql_query
(
mysql
,
"DROP TABLE test_table"
))
if
(
mysql_query
(
mysql
,
"DROP TABLE test_table"
))
...
@@ -4768,7 +4779,7 @@ static void test_prepare_alter()
...
@@ -4768,7 +4779,7 @@ static void test_prepare_alter()
rc
=
mysql_query
(
mysql
,
"INSERT INTO test_prep_alter values(10,'venu'),(20,'mysql')"
);
rc
=
mysql_query
(
mysql
,
"INSERT INTO test_prep_alter values(10,'venu'),(20,'mysql')"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"INSERT INTO test_prep_alter VALUES(?,'monty')"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"INSERT INTO test_prep_alter VALUES(?,'monty')"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -4794,7 +4805,7 @@ static void test_prepare_alter()
...
@@ -4794,7 +4805,7 @@ static void test_prepare_alter()
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
assert
(
4
==
my_stmt_result
(
"SELECT * FROM test_prep_alter"
,
50
));
assert
(
4
==
my_stmt_result
(
"SELECT * FROM test_prep_alter"
));
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
}
}
...
@@ -4976,7 +4987,7 @@ static void test_store_result()
...
@@ -4976,7 +4987,7 @@ static void test_store_result()
bind
[
1
].
is_null
=
&
is_null
[
1
];
bind
[
1
].
is_null
=
&
is_null
[
1
];
length1
=
0
;
length1
=
0
;
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_store_result"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_store_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -5087,7 +5098,7 @@ static void test_store_result1()
...
@@ -5087,7 +5098,7 @@ static void test_store_result1()
rc
=
mysql_commit
(
mysql
);
rc
=
mysql_commit
(
mysql
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_store_result"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_store_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -5158,7 +5169,7 @@ static void test_store_result2()
...
@@ -5158,7 +5169,7 @@ static void test_store_result2()
bind
[
0
].
is_null
=
0
;
bind
[
0
].
is_null
=
0
;
strmov
((
char
*
)
query
,
"SELECT col1 FROM test_store_result where col1= ?"
);
strmov
((
char
*
)
query
,
"SELECT col1 FROM test_store_result where col1= ?"
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
...
@@ -5250,7 +5261,7 @@ static void test_subselect()
...
@@ -5250,7 +5261,7 @@ static void test_subselect()
bind
[
0
].
length
=
0
;
bind
[
0
].
length
=
0
;
bind
[
0
].
is_null
=
0
;
bind
[
0
].
is_null
=
0
;
stmt
=
mysql_prepare
(
mysql
,
"INSERT INTO test_sub2(id) SELECT * FROM test_sub1 WHERE id=?"
,
100
);
stmt
=
mysql_
simple_
prepare
(
mysql
,
"INSERT INTO test_sub2(id) SELECT * FROM test_sub1 WHERE id=?"
,
100
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
...
@@ -5273,13 +5284,13 @@ static void test_subselect()
...
@@ -5273,13 +5284,13 @@ static void test_subselect()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
assert
(
3
==
my_stmt_result
(
"SELECT * FROM test_sub2"
,
50
));
assert
(
3
==
my_stmt_result
(
"SELECT * FROM test_sub2"
));
strmov
((
char
*
)
query
,
"SELECT ROW(1,7) IN (select id, id1 from test_sub2 WHERE id1=?)"
);
strmov
((
char
*
)
query
,
"SELECT ROW(1,7) IN (select id, id1 from test_sub2 WHERE id1=?)"
);
assert
(
1
==
my_stmt_result
(
"SELECT ROW(1,7) IN (select id, id1 from test_sub2 WHERE id1=8)"
,
100
));
assert
(
1
==
my_stmt_result
(
"SELECT ROW(1,7) IN (select id, id1 from test_sub2 WHERE id1=8)"
));
assert
(
1
==
my_stmt_result
(
"SELECT ROW(1,7) IN (select id, id1 from test_sub2 WHERE id1=7)"
,
100
));
assert
(
1
==
my_stmt_result
(
"SELECT ROW(1,7) IN (select id, id1 from test_sub2 WHERE id1=7)"
));
stmt
=
mysql_prepare
(
mysql
,
query
,
150
);
stmt
=
mysql_
simple_
prepare
(
mysql
,
query
,
150
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
...
@@ -5333,7 +5344,7 @@ static void test_bind_date_conv(uint row_count)
...
@@ -5333,7 +5344,7 @@ static void test_bind_date_conv(uint row_count)
ulong
second_part
;
ulong
second_part
;
uint
year
,
month
,
day
,
hour
,
minute
,
sec
;
uint
year
,
month
,
day
,
hour
,
minute
,
sec
;
stmt
=
mysql_
prepare
(
mysql
,
"INSERT INTO test_date VALUES(?,?,?,?)"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"INSERT INTO test_date VALUES(?,?,?,?)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
4
);
verify_param_count
(
stmt
,
4
);
...
@@ -5387,9 +5398,9 @@ static void test_bind_date_conv(uint row_count)
...
@@ -5387,9 +5398,9 @@ static void test_bind_date_conv(uint row_count)
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
assert
(
row_count
==
my_stmt_result
(
"SELECT * FROM test_date"
,
50
));
assert
(
row_count
==
my_stmt_result
(
"SELECT * FROM test_date"
));
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_date"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_date"
);
myquery
(
rc
);
myquery
(
rc
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
...
@@ -5584,11 +5595,11 @@ static void test_pure_coverage()
...
@@ -5584,11 +5595,11 @@ static void test_pure_coverage()
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_pure(c1 int, c2 varchar(20))"
);
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_pure(c1 int, c2 varchar(20))"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"insert into test_pure(c67788) values(10)"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"insert into test_pure(c67788) values(10)"
);
mystmt_init_r
(
stmt
);
mystmt_init_r
(
stmt
);
/* Query without params and result should allow to bind 0 arrays */
/* Query without params and result should allow to bind 0 arrays */
stmt
=
mysql_
prepare
(
mysql
,
"insert into test_pure(c2) values(10)"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"insert into test_pure(c2) values(10)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_param
(
stmt
,
(
MYSQL_BIND
*
)
0
);
rc
=
mysql_bind_param
(
stmt
,
(
MYSQL_BIND
*
)
0
);
...
@@ -5602,7 +5613,7 @@ static void test_pure_coverage()
...
@@ -5602,7 +5613,7 @@ static void test_pure_coverage()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"insert into test_pure(c2) values(?)"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"insert into test_pure(c2) values(?)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
length
=
&
length
;
bind
[
0
].
length
=
&
length
;
...
@@ -5622,7 +5633,7 @@ static void test_pure_coverage()
...
@@ -5622,7 +5633,7 @@ static void test_pure_coverage()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_pure"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_pure"
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -5669,7 +5680,7 @@ static void test_buffers()
...
@@ -5669,7 +5680,7 @@ static void test_buffers()
,('Database'),('Open-Source'),('Popular')"
);
,('Database'),('Open-Source'),('Popular')"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"select str from test_buffer"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select str from test_buffer"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -5747,7 +5758,7 @@ static void test_open_direct()
...
@@ -5747,7 +5758,7 @@ static void test_open_direct()
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_open_direct(id int, name char(6))"
);
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_open_direct(id int, name char(6))"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"INSERT INTO test_open_direct values(10,'mysql')"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"INSERT INTO test_open_direct values(10,'mysql')"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_query
(
mysql
,
"SELECT * FROM test_open_direct"
);
rc
=
mysql_query
(
mysql
,
"SELECT * FROM test_open_direct"
);
...
@@ -5786,7 +5797,7 @@ static void test_open_direct()
...
@@ -5786,7 +5797,7 @@ static void test_open_direct()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
/* run a direct query in the middle of a fetch */
/* run a direct query in the middle of a fetch */
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_open_direct"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_open_direct"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -5805,7 +5816,7 @@ static void test_open_direct()
...
@@ -5805,7 +5816,7 @@ static void test_open_direct()
myquery
(
rc
);
myquery
(
rc
);
/* run a direct query with store result */
/* run a direct query with store result */
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_open_direct"
,
100
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_open_direct"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -5836,8 +5847,8 @@ static void test_fetch_nobuffs()
...
@@ -5836,8 +5847,8 @@ static void test_fetch_nobuffs()
myheader
(
"test_fetch_nobuffs"
);
myheader
(
"test_fetch_nobuffs"
);
stmt
=
mysql_prepare
(
mysql
,
"SELECT DATABASE(), CURRENT_USER(), \
stmt
=
mysql_
simple_
prepare
(
mysql
,
"SELECT DATABASE(), CURRENT_USER(), \
CURRENT_DATE(), CURRENT_TIME()"
,
100
);
CURRENT_DATE(), CURRENT_TIME()"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -5910,7 +5921,7 @@ static void test_ushort_bug()
...
@@ -5910,7 +5921,7 @@ static void test_ushort_bug()
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_ushort"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_ushort"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -5994,7 +6005,7 @@ static void test_sshort_bug()
...
@@ -5994,7 +6005,7 @@ static void test_sshort_bug()
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_sshort"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_sshort"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6078,7 +6089,7 @@ static void test_stiny_bug()
...
@@ -6078,7 +6089,7 @@ static void test_stiny_bug()
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_stiny"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_stiny"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6163,7 +6174,7 @@ static void test_field_misc()
...
@@ -6163,7 +6174,7 @@ static void test_field_misc()
mysql_free_result
(
result
);
mysql_free_result
(
result
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT @@autocommit"
,
20
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT @@autocommit"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6183,7 +6194,7 @@ static void test_field_misc()
...
@@ -6183,7 +6194,7 @@ static void test_field_misc()
mysql_free_result
(
result
);
mysql_free_result
(
result
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT @@table_type"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT @@table_type"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6207,7 +6218,7 @@ static void test_field_misc()
...
@@ -6207,7 +6218,7 @@ static void test_field_misc()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT @@table_type"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT @@table_type"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
...
@@ -6227,7 +6238,7 @@ static void test_field_misc()
...
@@ -6227,7 +6238,7 @@ static void test_field_misc()
mysql_free_result
(
result
);
mysql_free_result
(
result
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT @@max_error_count"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT @@max_error_count"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
...
@@ -6247,7 +6258,7 @@ static void test_field_misc()
...
@@ -6247,7 +6258,7 @@ static void test_field_misc()
mysql_free_result
(
result
);
mysql_free_result
(
result
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT @@max_allowed_packet"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT @@max_allowed_packet"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
...
@@ -6267,7 +6278,7 @@ static void test_field_misc()
...
@@ -6267,7 +6278,7 @@ static void test_field_misc()
mysql_free_result
(
result
);
mysql_free_result
(
result
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT @@sql_warnings"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT @@sql_warnings"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
result
=
mysql_get_metadata
(
stmt
);
...
@@ -6328,7 +6339,7 @@ static void test_set_option()
...
@@ -6328,7 +6339,7 @@ static void test_set_option()
mysql_free_result
(
result
);
mysql_free_result
(
result
);
fprintf
(
stdout
,
"
\n
with SQL_SELECT_LIMIT=2 (prepare)"
);
fprintf
(
stdout
,
"
\n
with SQL_SELECT_LIMIT=2 (prepare)"
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_limit"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_limit"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6343,7 +6354,7 @@ static void test_set_option()
...
@@ -6343,7 +6354,7 @@ static void test_set_option()
rc
=
mysql_query
(
mysql
,
"SET OPTION SQL_SELECT_LIMIT=DEFAULT"
);
rc
=
mysql_query
(
mysql
,
"SET OPTION SQL_SELECT_LIMIT=DEFAULT"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_limit"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_limit"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6420,18 +6431,20 @@ static void test_prepare_grant()
...
@@ -6420,18 +6431,20 @@ static void test_prepare_grant()
execute_prepare_query
(
"INSERT INTO test_grant(a) VALUES(NULL)"
,
1
);
execute_prepare_query
(
"INSERT INTO test_grant(a) VALUES(NULL)"
,
1
);
execute_prepare_query
(
"INSERT INTO test_grant VALUES(NULL)"
,
1
);
execute_prepare_query
(
"INSERT INTO test_grant VALUES(NULL)"
,
1
);
execute_prepare_query
(
"UPDATE test_grant SET a=9 WHERE a=1"
,
1
);
execute_prepare_query
(
"UPDATE test_grant SET a=9 WHERE a=1"
,
1
);
assert
(
4
==
my_stmt_result
(
"SELECT a FROM test_grant"
,
50
));
assert
(
4
==
my_stmt_result
(
"SELECT a FROM test_grant"
));
/* Both DELETE expected to fail as user does not have DELETE privs */
rc
=
mysql_query
(
mysql
,
"DELETE FROM test_grant"
);
rc
=
mysql_query
(
mysql
,
"DELETE FROM test_grant"
);
myquery_r
(
rc
);
myquery_r
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"DELETE FROM test_grant"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"DELETE FROM test_grant"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
myquery_r
(
rc
);
myquery_r
(
rc
);
assert
(
4
==
my_stmt_result
(
"SELECT * FROM test_grant"
,
50
));
assert
(
4
==
my_stmt_result
(
"SELECT * FROM test_grant"
));
mysql_close
(
lmysql
);
mysql_close
(
lmysql
);
mysql
=
org_mysql
;
mysql
=
org_mysql
;
...
@@ -6474,7 +6487,7 @@ static void test_frm_bug()
...
@@ -6474,7 +6487,7 @@ static void test_frm_bug()
rc
=
mysql_query
(
mysql
,
"flush tables"
);
rc
=
mysql_query
(
mysql
,
"flush tables"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"show variables like 'datadir'"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"show variables like 'datadir'"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6557,7 +6570,7 @@ static void test_decimal_bug()
...
@@ -6557,7 +6570,7 @@ static void test_decimal_bug()
rc
=
mysql_query
(
mysql
,
"insert into test_decimal_bug value(8),(10.22),(5.61)"
);
rc
=
mysql_query
(
mysql
,
"insert into test_decimal_bug value(8),(10.22),(5.61)"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"select c1 from test_decimal_bug where c1= ?"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select c1 from test_decimal_bug where c1= ?"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
buffer_type
=
MYSQL_TYPE_DOUBLE
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_DOUBLE
;
...
@@ -6653,7 +6666,7 @@ static void test_explain_bug()
...
@@ -6653,7 +6666,7 @@ static void test_explain_bug()
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_explain(id int, name char(2))"
);
rc
=
mysql_query
(
mysql
,
"CREATE TABLE test_explain(id int, name char(2))"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"explain test_explain"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"explain test_explain"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6689,7 +6702,7 @@ static void test_explain_bug()
...
@@ -6689,7 +6702,7 @@ static void test_explain_bug()
mysql_free_result
(
result
);
mysql_free_result
(
result
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
stmt
=
mysql_
prepare
(
mysql
,
"explain select id, name FROM test_explain"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"explain select id, name FROM test_explain"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -6937,10 +6950,10 @@ static void test_logs()
...
@@ -6937,10 +6950,10 @@ static void test_logs()
myheader
(
"test_logs"
);
myheader
(
"test_logs"
);
rc
=
mysql_
real_query
(
mysql
,
"DROP TABLE IF EXISTS test_logs"
,
100
);
rc
=
mysql_
query
(
mysql
,
"DROP TABLE IF EXISTS test_logs"
);
myquery
(
rc
);
myquery
(
rc
);
rc
=
mysql_
real_query
(
mysql
,
"CREATE TABLE test_logs(id smallint, name varchar(20))"
,
100
);
rc
=
mysql_
query
(
mysql
,
"CREATE TABLE test_logs(id smallint, name varchar(20))"
);
myquery
(
rc
);
myquery
(
rc
);
length
=
(
ulong
)(
strmov
((
char
*
)
data
,
"INSERT INTO test_logs VALUES(?,?)"
)
-
data
);
length
=
(
ulong
)(
strmov
((
char
*
)
data
,
"INSERT INTO test_logs VALUES(?,?)"
)
-
data
);
...
@@ -7002,7 +7015,7 @@ static void test_logs()
...
@@ -7002,7 +7015,7 @@ static void test_logs()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
length
=
(
ulong
)(
strmov
((
char
*
)
data
,
"SELECT * FROM test_logs WHERE id=?"
)
-
data
);
length
=
(
ulong
)(
strmov
((
char
*
)
data
,
"SELECT * FROM test_logs WHERE id=?"
)
-
data
);
stmt
=
mysql_prepare
(
mysql
,
data
,
length
+
2
);
stmt
=
mysql_prepare
(
mysql
,
data
,
length
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
...
@@ -7112,7 +7125,7 @@ static void test_nstmts()
...
@@ -7112,7 +7125,7 @@ static void test_nstmts()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
}
}
stmt
=
mysql_
prepare
(
mysql
,
" select count(*) from test_nstmts"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
" select count(*) from test_nstmts"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -7159,7 +7172,7 @@ static void test_fetch_seek()
...
@@ -7159,7 +7172,7 @@ static void test_fetch_seek()
rc
=
mysql_query
(
mysql
,
"insert into test_seek(c2) values('venu'),('mysql'),('open'),('source')"
);
rc
=
mysql_query
(
mysql
,
"insert into test_seek(c2) values('venu'),('mysql'),('open'),('source')"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_seek"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_seek"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
...
@@ -7254,7 +7267,7 @@ static void test_fetch_offset()
...
@@ -7254,7 +7267,7 @@ static void test_fetch_offset()
rc
=
mysql_query
(
mysql
,
"insert into test_column values('abcdefghij'),(null)"
);
rc
=
mysql_query
(
mysql
,
"insert into test_column values('abcdefghij'),(null)"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_column"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_column"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
buffer_type
=
MYSQL_TYPE_STRING
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_STRING
;
...
@@ -7334,7 +7347,7 @@ static void test_fetch_column()
...
@@ -7334,7 +7347,7 @@ static void test_fetch_column()
rc
=
mysql_query
(
mysql
,
"insert into test_column(c2) values('venu'),('mysql')"
);
rc
=
mysql_query
(
mysql
,
"insert into test_column(c2) values('venu'),('mysql')"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_column order by c2 desc"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_column order by c2 desc"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
...
@@ -7518,7 +7531,7 @@ static void test_mem_overun()
...
@@ -7518,7 +7531,7 @@ static void test_mem_overun()
assert
(
1
==
my_process_result
(
mysql
));
assert
(
1
==
my_process_result
(
mysql
));
stmt
=
mysql_
prepare
(
mysql
,
"select * from t_mem_overun"
,
30
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from t_mem_overun"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -7564,7 +7577,7 @@ static void test_free_result()
...
@@ -7564,7 +7577,7 @@ static void test_free_result()
rc
=
mysql_query
(
mysql
,
"insert into test_free_result values(),(),()"
);
rc
=
mysql_query
(
mysql
,
"insert into test_free_result values(),(),()"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_free_result"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_free_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
...
@@ -7643,7 +7656,7 @@ static void test_free_store_result()
...
@@ -7643,7 +7656,7 @@ static void test_free_store_result()
rc
=
mysql_query
(
mysql
,
"insert into test_free_result values(),(),()"
);
rc
=
mysql_query
(
mysql
,
"insert into test_free_result values(),(),()"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"select * from test_free_result"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"select * from test_free_result"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_LONG
;
...
@@ -7730,7 +7743,7 @@ static void test_sqlmode()
...
@@ -7730,7 +7743,7 @@ static void test_sqlmode()
strcpy
(
query
,
"INSERT INTO test_piping VALUES(?||?)"
);
strcpy
(
query
,
"INSERT INTO test_piping VALUES(?||?)"
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
fprintf
(
stdout
,
"
\n
total parameters: %ld"
,
mysql_param_count
(
stmt
));
fprintf
(
stdout
,
"
\n
total parameters: %ld"
,
mysql_param_count
(
stmt
));
...
@@ -7762,7 +7775,7 @@ static void test_sqlmode()
...
@@ -7762,7 +7775,7 @@ static void test_sqlmode()
strcpy
(
query
,
"SELECT connection_id ()"
);
strcpy
(
query
,
"SELECT connection_id ()"
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init_r
(
stmt
);
mystmt_init_r
(
stmt
);
/* ANSI */
/* ANSI */
...
@@ -7773,7 +7786,7 @@ static void test_sqlmode()
...
@@ -7773,7 +7786,7 @@ static void test_sqlmode()
strcpy
(
query
,
"INSERT INTO test_piping VALUES(?||?)"
);
strcpy
(
query
,
"INSERT INTO test_piping VALUES(?||?)"
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
fprintf
(
stdout
,
"
\n
total parameters: %ld"
,
mysql_param_count
(
stmt
));
fprintf
(
stdout
,
"
\n
total parameters: %ld"
,
mysql_param_count
(
stmt
));
...
@@ -7790,7 +7803,7 @@ static void test_sqlmode()
...
@@ -7790,7 +7803,7 @@ static void test_sqlmode()
/* ANSI mode spaces ... */
/* ANSI mode spaces ... */
strcpy
(
query
,
"SELECT connection_id ()"
);
strcpy
(
query
,
"SELECT connection_id ()"
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -7813,7 +7826,7 @@ static void test_sqlmode()
...
@@ -7813,7 +7826,7 @@ static void test_sqlmode()
strcpy
(
query
,
"SELECT connection_id ()"
);
strcpy
(
query
,
"SELECT connection_id ()"
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
fprintf
(
stdout
,
"
\n
query: %s"
,
query
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
70
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
...
@@ -7854,7 +7867,7 @@ static void test_ts()
...
@@ -7854,7 +7867,7 @@ static void test_ts()
rc
=
mysql_commit
(
mysql
);
rc
=
mysql_commit
(
mysql
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"INSERT INTO test_ts VALUES(?,?,?),(?,?,?)"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"INSERT INTO test_ts VALUES(?,?,?),(?,?,?)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
ts
.
year
=
2003
;
ts
.
year
=
2003
;
...
@@ -7893,7 +7906,7 @@ static void test_ts()
...
@@ -7893,7 +7906,7 @@ static void test_ts()
verify_col_data
(
"test_ts"
,
"b"
,
"21:07:46"
);
verify_col_data
(
"test_ts"
,
"b"
,
"21:07:46"
);
verify_col_data
(
"test_ts"
,
"c"
,
"2003-07-12 21:07:46"
);
verify_col_data
(
"test_ts"
,
"c"
,
"2003-07-12 21:07:46"
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT * FROM test_ts"
,
50
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT * FROM test_ts"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
prep_res
=
mysql_get_metadata
(
stmt
);
prep_res
=
mysql_get_metadata
(
stmt
);
...
@@ -7964,7 +7977,7 @@ static void test_bug1500()
...
@@ -7964,7 +7977,7 @@ static void test_bug1500()
rc
=
mysql_commit
(
mysql
);
rc
=
mysql_commit
(
mysql
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
"SELECT i FROM test_bg1500 WHERE i IN (?,?,?)"
,
44
);
stmt
=
mysql_
simple_prepare
(
mysql
,
"SELECT i FROM test_bg1500 WHERE i IN (?,?,?)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
3
);
verify_param_count
(
stmt
,
3
);
...
@@ -7999,8 +8012,8 @@ static void test_bug1500()
...
@@ -7999,8 +8012,8 @@ static void test_bug1500()
rc
=
mysql_commit
(
mysql
);
rc
=
mysql_commit
(
mysql
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_prepare
(
mysql
,
stmt
=
mysql_
simple_
prepare
(
mysql
,
"SELECT s FROM test_bg1500 WHERE MATCH (s) AGAINST (?)"
,
53
);
"SELECT s FROM test_bg1500 WHERE MATCH (s) AGAINST (?)"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -8027,8 +8040,8 @@ static void test_bug1500()
...
@@ -8027,8 +8040,8 @@ static void test_bug1500()
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
/* This should work too */
/* This should work too */
stmt
=
mysql_prepare
(
mysql
,
stmt
=
mysql_
simple_
prepare
(
mysql
,
"SELECT s FROM test_bg1500 WHERE MATCH (s) AGAINST (CONCAT(?,'digger'))"
,
70
);
"SELECT s FROM test_bg1500 WHERE MATCH (s) AGAINST (CONCAT(?,'digger'))"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
verify_param_count
(
stmt
,
1
);
verify_param_count
(
stmt
,
1
);
...
@@ -8065,7 +8078,7 @@ static void test_bug1946()
...
@@ -8065,7 +8078,7 @@ static void test_bug1946()
rc
=
mysql_query
(
mysql
,
"CREATE TABLE prepare_command(ID INT)"
);
rc
=
mysql_query
(
mysql
,
"CREATE TABLE prepare_command(ID INT)"
);
myquery
(
rc
);
myquery
(
rc
);
stmt
=
mysql_
prepare
(
mysql
,
query
,
strlen
(
query
)
);
stmt
=
mysql_
simple_prepare
(
mysql
,
query
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
rc
=
mysql_real_query
(
mysql
,
query
,
strlen
(
query
));
rc
=
mysql_real_query
(
mysql
,
query
,
strlen
(
query
));
assert
(
rc
!=
0
);
assert
(
rc
!=
0
);
...
@@ -8076,6 +8089,28 @@ static void test_bug1946()
...
@@ -8076,6 +8089,28 @@ static void test_bug1946()
rc
=
mysql_query
(
mysql
,
"DROP TABLE prepare_command"
);
rc
=
mysql_query
(
mysql
,
"DROP TABLE prepare_command"
);
}
}
static
void
test_parse_error_and_bad_length
()
{
MYSQL_STMT
*
stmt
;
int
rc
;
/* check that we get 4 syntax errors over the 4 calls */
myheader
(
"test_parse_error_and_bad_length"
);
rc
=
mysql_query
(
mysql
,
"SHOW DATABAAAA"
);
assert
(
rc
);
fprintf
(
stdout
,
"Got error (as expected): '%s'
\n
"
,
mysql_error
(
mysql
));
rc
=
mysql_real_query
(
mysql
,
"SHOW DATABASES"
,
100
);
assert
(
rc
);
fprintf
(
stdout
,
"Got error (as expected): '%s'
\n
"
,
mysql_error
(
mysql
));
stmt
=
mysql_simple_prepare
(
mysql
,
"SHOW DATABAAAA"
);
assert
(
!
stmt
);
fprintf
(
stdout
,
"Got error (as expected): '%s'
\n
"
,
mysql_error
(
mysql
));
stmt
=
mysql_prepare
(
mysql
,
"SHOW DATABASES"
,
100
);
assert
(
!
stmt
);
fprintf
(
stdout
,
"Got error (as expected): '%s'
\n
"
,
mysql_error
(
mysql
));
}
/*
/*
Test for bug#2248 "mysql_fetch without prior mysql_execute hangs"
Test for bug#2248 "mysql_fetch without prior mysql_execute hangs"
...
@@ -8380,6 +8415,8 @@ int main(int argc, char **argv)
...
@@ -8380,6 +8415,8 @@ int main(int argc, char **argv)
test_bug1946
();
/* test that placeholders are allowed only in
test_bug1946
();
/* test that placeholders are allowed only in
prepared queries */
prepared queries */
test_bug2248
();
/* BUG#2248 */
test_bug2248
();
/* BUG#2248 */
test_parse_error_and_bad_length
();
/* test if bad length param in
mysql_prepare() triggers error */
end_time
=
time
((
time_t
*
)
0
);
end_time
=
time
((
time_t
*
)
0
);
total_time
+=
difftime
(
end_time
,
start_time
);
total_time
+=
difftime
(
end_time
,
start_time
);
...
...
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