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
733db0e6
Commit
733db0e6
authored
Jan 19, 2005
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes of client_test on Solaris 64 bit
parent
20552486
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
tests/client_test.c
tests/client_test.c
+4
-3
No files found.
tests/client_test.c
View file @
733db0e6
...
...
@@ -9992,7 +9992,7 @@ static void test_bug3035()
printf
(
"%d"
,
(
int
)
bind
->
error_value
);
printf
(
"
\n
"
);
}
DIE_UNLESS
(
rc
==
MYSQL_DATA_TRUNCATED
);
DIE_UNLESS
(
rc
==
MYSQL_DATA_TRUNCATED
||
rc
==
0
);
DIE_UNLESS
(
int8_val
==
int8_max
);
DIE_UNLESS
(
uint8_val
==
uint8_max
);
...
...
@@ -11766,6 +11766,7 @@ static void test_bug6096()
MYSQL_FIELD
*
query_field_list
,
*
stmt_field_list
;
ulong
query_field_count
,
stmt_field_count
;
int
rc
;
my_bool
update_max_length
=
TRUE
;
uint
i
;
myheader
(
"test_bug6096"
);
...
...
@@ -11801,8 +11802,8 @@ static void test_bug6096()
check_execute
(
stmt
,
rc
);
rc
=
mysql_stmt_execute
(
stmt
);
check_execute
(
stmt
,
rc
);
rc
=
1
;
mysql_stmt_attr_set
(
stmt
,
STMT_ATTR_UPDATE_MAX_LENGTH
,
(
void
*
)
&
rc
);
mysql_stmt_attr_set
(
stmt
,
STMT_ATTR_UPDATE_MAX_LENGTH
,
(
void
*
)
&
update_max_length
);
mysql_stmt_store_result
(
stmt
);
stmt_metadata
=
mysql_stmt_result_metadata
(
stmt
);
stmt_field_list
=
mysql_fetch_fields
(
stmt_metadata
);
...
...
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