1
0
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:
David Mott
2019-04-18 04:43:28 -05:00
parent 67880c2319
commit b2810bf35d

View File

@ -443,7 +443,7 @@ void BulkLoadBuffer::convert(char* field, int fieldLength,
{
memcpy(&dVal, field, sizeof(dVal));
if ( isnan(dVal) )
if ( std::isnan(dVal) )
{
if (signbit(dVal))
dVal = column.fMinDblSat;