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
79c62d31
Commit
79c62d31
authored
Apr 12, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge grichter@bk-internal.mysql.com:/home/bk/mysql-5.0
into lmy002.wdf.sap.corp:/home/georg/work/mysql/prod/mysql-5.0
parents
281fe07f
62be4f5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
libmysql/libmysql.c
libmysql/libmysql.c
+6
-6
tests/mysql_client_test.c
tests/mysql_client_test.c
+2
-3
No files found.
libmysql/libmysql.c
View file @
79c62d31
...
@@ -3656,7 +3656,6 @@ static void fetch_long_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
...
@@ -3656,7 +3656,6 @@ static void fetch_long_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
}
}
}
}
/*
/*
Convert double/float column to supplied buffer of any type.
Convert double/float column to supplied buffer of any type.
...
@@ -3673,6 +3672,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
...
@@ -3673,6 +3672,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
double
value
,
int
width
)
double
value
,
int
width
)
{
{
char
*
buffer
=
(
char
*
)
param
->
buffer
;
char
*
buffer
=
(
char
*
)
param
->
buffer
;
double
val64
=
(
value
<
0
?
-
floor
(
-
value
)
:
floor
(
value
));
switch
(
param
->
buffer_type
)
{
switch
(
param
->
buffer_type
)
{
case
MYSQL_TYPE_NULL
:
/* do nothing */
case
MYSQL_TYPE_NULL
:
/* do nothing */
...
@@ -3688,8 +3688,8 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
...
@@ -3688,8 +3688,8 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
*
buffer
=
(
uint8
)
value
;
*
buffer
=
(
uint8
)
value
;
else
else
*
buffer
=
(
int8
)
value
;
*
buffer
=
(
int8
)
value
;
*
param
->
error
=
val
ue
!=
(
param
->
is_unsigned
?
(
double
)
((
uint8
)
*
buffer
)
:
*
param
->
error
=
val
64
!=
(
param
->
is_unsigned
?
(
double
)
((
uint8
)
*
buffer
)
:
(
double
)
((
int8
)
*
buffer
));
(
double
)((
int8
)
*
buffer
));
break
;
break
;
case
MYSQL_TYPE_SHORT
:
case
MYSQL_TYPE_SHORT
:
if
(
param
->
is_unsigned
)
if
(
param
->
is_unsigned
)
...
@@ -3702,7 +3702,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
...
@@ -3702,7 +3702,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
short
data
=
(
short
)
value
;
short
data
=
(
short
)
value
;
shortstore
(
buffer
,
data
);
shortstore
(
buffer
,
data
);
}
}
*
param
->
error
=
val
ue
!=
(
param
->
is_unsigned
?
(
double
)
(
*
(
ushort
*
)
buffer
)
:
*
param
->
error
=
val
64
!=
(
param
->
is_unsigned
?
(
double
)
(
*
(
ushort
*
)
buffer
)
:
(
double
)
(
*
(
short
*
)
buffer
));
(
double
)
(
*
(
short
*
)
buffer
));
break
;
break
;
case
MYSQL_TYPE_LONG
:
case
MYSQL_TYPE_LONG
:
...
@@ -3716,7 +3716,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
...
@@ -3716,7 +3716,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
int32
data
=
(
int32
)
value
;
int32
data
=
(
int32
)
value
;
longstore
(
buffer
,
data
);
longstore
(
buffer
,
data
);
}
}
*
param
->
error
=
val
ue
!=
(
param
->
is_unsigned
?
(
double
)
(
*
(
uint32
*
)
buffer
)
:
*
param
->
error
=
val
64
!=
(
param
->
is_unsigned
?
(
double
)
(
*
(
uint32
*
)
buffer
)
:
(
double
)
(
*
(
int32
*
)
buffer
));
(
double
)
(
*
(
int32
*
)
buffer
));
break
;
break
;
case
MYSQL_TYPE_LONGLONG
:
case
MYSQL_TYPE_LONGLONG
:
...
@@ -3730,7 +3730,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
...
@@ -3730,7 +3730,7 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
longlong
data
=
(
longlong
)
value
;
longlong
data
=
(
longlong
)
value
;
longlongstore
(
buffer
,
data
);
longlongstore
(
buffer
,
data
);
}
}
*
param
->
error
=
val
ue
!=
(
param
->
is_unsigned
?
*
param
->
error
=
val
64
!=
(
param
->
is_unsigned
?
ulonglong2double
(
*
(
ulonglong
*
)
buffer
)
:
ulonglong2double
(
*
(
ulonglong
*
)
buffer
)
:
(
double
)
(
*
(
longlong
*
)
buffer
));
(
double
)
(
*
(
longlong
*
)
buffer
));
break
;
break
;
...
...
tests/mysql_client_test.c
View file @
79c62d31
...
@@ -3654,8 +3654,8 @@ static void test_bind_result_ext1()
...
@@ -3654,8 +3654,8 @@ static void test_bind_result_ext1()
check_execute
(
stmt
,
rc
);
check_execute
(
stmt
,
rc
);
rc
=
mysql_stmt_fetch
(
stmt
);
rc
=
mysql_stmt_fetch
(
stmt
);
DIE_UNLESS
(
rc
==
MYSQL_DATA_TRUNCATED
);
printf
(
"rc=%d
\n
"
,
rc
);
DIE_UNLESS
(
bind
[
4
].
error_value
==
1
);
DIE_UNLESS
(
rc
==
0
);
if
(
!
opt_silent
)
if
(
!
opt_silent
)
{
{
...
@@ -12462,7 +12462,6 @@ static void test_truncation()
...
@@ -12462,7 +12462,6 @@ static void test_truncation()
/* double -> longlong: fractional part is lost */
/* double -> longlong: fractional part is lost */
DIE_UNLESS
(
++
bind
<
bind_array
+
bind_count
);
DIE_UNLESS
(
++
bind
<
bind_array
+
bind_count
);
DIE_UNLESS
(
*
bind
->
error
&&
*
(
longlong
*
)
bind
->
buffer
==
123
);
/* double -> ulonglong, negative fp number to unsigned integer */
/* double -> ulonglong, negative fp number to unsigned integer */
DIE_UNLESS
(
++
bind
<
bind_array
+
bind_count
);
DIE_UNLESS
(
++
bind
<
bind_array
+
bind_count
);
...
...
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