1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Merge branch 'develop' into MCOL-498_5

This commit is contained in:
Andrew Hutchings
2019-04-24 09:04:39 +01:00
committed by GitHub
22 changed files with 255 additions and 632 deletions

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;