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
9be8ea49
Commit
9be8ea49
authored
Nov 26, 2003
by
konstantin@oak.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
2556abd9
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 @
9be8ea49
...
...
@@ -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
;
...
...
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