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;

View File

@ -15,5 +15,8 @@ target_link_libraries(writeengineredistribute ${NETSNMP_LIBRARIES})
set_target_properties(writeengineredistribute PROPERTIES VERSION 1.0.0 SOVERSION 1)
target_compile_definitions(writeengineredistribute PUBLIC BOOST_NO_CXX11_SCOPED_ENUMS)
install(TARGETS writeengineredistribute DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)