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
ef3b51d5
Commit
ef3b51d5
authored
Nov 26, 2003
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Plain Diff
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-union-4.1
parents
908bc222
9be8ea49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
tests/client_test.c
tests/client_test.c
+5
-5
No files found.
tests/client_test.c
View file @
ef3b51d5
...
...
@@ -7962,7 +7962,7 @@ static void test_bug1500()
MYSQL_BIND
bind
[
3
];
int
rc
;
long
int_data
[
3
]
=
{
2
,
3
,
4
};
c
har
*
data
;
c
onst
char
*
data
;
myheader
(
"test_bug1500"
);
...
...
@@ -8021,7 +8021,7 @@ static void test_bug1500()
data
=
"Dogs"
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_STRING
;
bind
[
0
].
buffer
=
data
;
bind
[
0
].
buffer
=
(
char
*
)
data
;
bind
[
0
].
buffer_length
=
strlen
(
data
);
bind
[
0
].
is_null
=
0
;
bind
[
0
].
length
=
0
;
...
...
@@ -8049,7 +8049,7 @@ static void test_bug1500()
data
=
"Grave"
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_STRING
;
bind
[
0
].
buffer
=
data
;
bind
[
0
].
buffer
=
(
char
*
)
data
;
bind
[
0
].
buffer_length
=
strlen
(
data
);
bind
[
0
].
is_null
=
0
;
bind
[
0
].
length
=
0
;
...
...
@@ -8234,8 +8234,6 @@ int main(int argc, char **argv)
/* Used for internal new development debugging */
test_drop_temp
();
/* to test DROP TEMPORARY TABLE Access checks */
#endif
test_bug1946
();
/* test that placeholders are allowed only in
prepared queries */
test_fetch_seek
();
/* to test stmt seek() functions */
test_fetch_nobuffs
();
/* to fecth without prior bound buffers */
test_open_direct
();
/* direct execution in the middle of open stmts */
...
...
@@ -8335,6 +8333,8 @@ int main(int argc, char **argv)
test_bug1180
();
/* BUG#1180 */
test_bug1500
();
/* BUG#1500 */
test_bug1644
();
/* BUG#1644 */
test_bug1946
();
/* test that placeholders are allowed only in
prepared queries */
end_time
=
time
((
time_t
*
)
0
);
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