mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Eliminate warnings noticed by VC7. This includes fixing my_mmap() on
Windows to call CreateFileMapping() with correct arguments, and propogating the introduction of query_id_t to everywhere query ids are passed around. (Bug #8826)
This commit is contained in:
@ -3608,7 +3608,7 @@ static void fetch_long_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
|
||||
if (is_unsigned)
|
||||
data= ulonglong2double(value);
|
||||
else
|
||||
data= value;
|
||||
data= (double)value;
|
||||
doublestore(buffer, data);
|
||||
*param->error= is_unsigned ?
|
||||
((ulonglong) value) != ((ulonglong) (*(double*) buffer)) :
|
||||
|
Reference in New Issue
Block a user