You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
fix ambiguous symbol
This commit is contained in:
@ -443,7 +443,7 @@ void BulkLoadBuffer::convert(char* field, int fieldLength,
|
|||||||
{
|
{
|
||||||
memcpy(&dVal, field, sizeof(dVal));
|
memcpy(&dVal, field, sizeof(dVal));
|
||||||
|
|
||||||
if ( isnan(dVal) )
|
if ( std::isnan(dVal) )
|
||||||
{
|
{
|
||||||
if (signbit(dVal))
|
if (signbit(dVal))
|
||||||
dVal = column.fMinDblSat;
|
dVal = column.fMinDblSat;
|
||||||
|
Reference in New Issue
Block a user