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
0b02c734
Commit
0b02c734
authored
Jun 19, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the test for Bug#11111: coding style, a compiler warning, don't
use tabs.
parent
f72c5b51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
12 deletions
+16
-12
tests/mysql_client_test.c
tests/mysql_client_test.c
+16
-12
No files found.
tests/mysql_client_test.c
View file @
0b02c734
...
...
@@ -13151,13 +13151,14 @@ static void test_bug9643()
static
void
test_bug11111
()
{
MYSQL_STMT
*
stmt
;
MYSQL_BIND
bind
[
2
];
char
buf
[
2
][
20
];
long
len
[
2
];
MYSQL_STMT
*
stmt
;
MYSQL_BIND
bind
[
2
];
char
buf
[
2
][
20
];
ulong
len
[
2
];
int
i
;
int
rc
;
const
char
*
query
=
"SELECT DISTINCT f1,ff2 FROM v1"
;
const
char
*
query
=
"SELECT DISTINCT f1,ff2 FROM v1"
;
myheader
(
"test_bug11111"
);
rc
=
mysql_query
(
mysql
,
"drop table if exists t1, t2, v1"
);
...
...
@@ -13175,24 +13176,27 @@ static void test_bug11111()
rc
=
mysql_query
(
mysql
,
"insert into t2 values (1,1), (2,2), (3,3)"
);
myquery
(
rc
);
stmt
=
mysql_stmt_init
(
mysql
);
stmt
=
mysql_stmt_init
(
mysql
);
mysql_stmt_prepare
(
stmt
,
query
,
strlen
(
query
));
mysql_stmt_execute
(
stmt
);
for
(
i
=
0
;
i
<
2
;
i
++
)
{
memset
(
&
bind
[
i
],
'\0'
,
sizeof
(
MYSQL_BIND
));
bzero
(
bind
,
sizeof
(
bind
));
for
(
i
=
0
;
i
<
2
;
i
++
)
{
bind
[
i
].
buffer_type
=
MYSQL_TYPE_STRING
;
bind
[
i
].
buffer
=
(
gptr
*
)
&
buf
[
i
];
bind
[
i
].
buffer_length
=
20
;
bind
[
i
].
length
=
&
len
[
i
];
}
if
(
mysql_stmt_bind_result
(
stmt
,
bind
))
printf
(
"Error: %s
\n
"
,
mysql_stmt_error
(
stmt
)
);
rc
=
mysql_stmt_bind_result
(
stmt
,
bind
);
check_execute
(
stmt
,
rc
);
mysql_stmt_fetch
(
stmt
);
printf
(
"return: %s"
,
buf
[
1
]);
rc
=
mysql_stmt_fetch
(
stmt
);
check_execute
(
stmt
,
rc
);
if
(
!
opt_silent
)
printf
(
"return: %s"
,
buf
[
1
]);
DIE_UNLESS
(
!
strcmp
(
buf
[
1
],
"1"
));
mysql_stmt_close
(
stmt
);
rc
=
mysql_query
(
mysql
,
"drop view v1"
);
...
...
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