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
6475db53
Commit
6475db53
authored
Apr 30, 2004
by
sergefp@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix client_test to use new statement assertion macros
parent
862a7b80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tests/client_test.c
tests/client_test.c
+3
-3
No files found.
tests/client_test.c
View file @
6475db53
...
...
@@ -1855,7 +1855,7 @@ static void test_ps_conj_select()
strmov
(
query
,
"select id1,value1 from t1 where id1=? or value1=?"
);
stmt
=
mysql_simple_prepare
(
mysql
,
query
);
mystmt_ini
t
(
stmt
);
check_stm
t
(
stmt
);
verify_param_count
(
stmt
,
2
);
...
...
@@ -1871,14 +1871,14 @@ static void test_ps_conj_select()
bind
[
1
].
length
=
&
str_length
;
rc
=
mysql_bind_param
(
stmt
,
bind
);
mystmt
(
stmt
,
rc
);
check_execute
(
stmt
,
rc
);
int_data
=
1
;
strcpy
(
str_data
,
"hh"
);
str_length
=
strlen
(
str_data
);
rc
=
mysql_execute
(
stmt
);
mystmt
(
stmt
,
rc
);
check_execute
(
stmt
,
rc
);
assert
(
my_process_stmt_result
(
stmt
)
==
3
);
...
...
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