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
912fef70
Commit
912fef70
authored
Jul 16, 2005
by
georg@lmy002.wdf.sap.corp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cs fixes
parent
83cf055d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
tests/mysql_client_test.c
tests/mysql_client_test.c
+6
-6
No files found.
tests/mysql_client_test.c
View file @
912fef70
...
@@ -13617,8 +13617,8 @@ static void test_bug10214()
...
@@ -13617,8 +13617,8 @@ static void test_bug10214()
static
void
test_client_character_set
()
static
void
test_client_character_set
()
{
{
MY_CHARSET_INFO
cs
;
MY_CHARSET_INFO
cs
;
char
*
csname
=
(
char
*
)
"utf8"
;
char
*
csname
=
(
char
*
)
"utf8"
;
char
*
csdefault
=
(
char
*
)
mysql_character_set_name
(
mysql
);
char
*
csdefault
=
(
char
*
)
mysql_character_set_name
(
mysql
);
int
rc
;
int
rc
;
myheader
(
"test_client_character_set"
);
myheader
(
"test_client_character_set"
);
...
@@ -13732,16 +13732,16 @@ static void test_bug11037()
...
@@ -13732,16 +13732,16 @@ static void test_bug11037()
fprintf
(
stdout
,
"Got error, as expected:
\n
[%d] %s
\n
"
,
fprintf
(
stdout
,
"Got error, as expected:
\n
[%d] %s
\n
"
,
mysql_stmt_errno
(
stmt
),
mysql_stmt_error
(
stmt
));
mysql_stmt_errno
(
stmt
),
mysql_stmt_error
(
stmt
));
rc
=
mysql_stmt_execute
(
stmt
);
rc
=
mysql_stmt_execute
(
stmt
);
check_execute
(
stmt
,
rc
);
check_execute
(
stmt
,
rc
);
rc
=
mysql_stmt_fetch
(
stmt
);
rc
=
mysql_stmt_fetch
(
stmt
);
DIE_UNLESS
(
rc
==
0
);
DIE_UNLESS
(
rc
==
0
);
rc
=
mysql_stmt_fetch
(
stmt
);
rc
=
mysql_stmt_fetch
(
stmt
);
DIE_UNLESS
(
rc
==
MYSQL_NO_DATA
);
DIE_UNLESS
(
rc
==
MYSQL_NO_DATA
);
rc
=
mysql_stmt_fetch
(
stmt
);
rc
=
mysql_stmt_fetch
(
stmt
);
DIE_UNLESS
(
rc
==
MYSQL_NO_DATA
);
DIE_UNLESS
(
rc
==
MYSQL_NO_DATA
);
mysql_stmt_close
(
stmt
);
mysql_stmt_close
(
stmt
);
...
...
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