You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
MCOL-3536 Collation
This commit is contained in:
@@ -1,6 +1,23 @@
|
||||
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12)
|
||||
|
||||
IF (NOT COMMAND MESSAGE_ONCE)
|
||||
# lifted from the server's definition of message_once
|
||||
IF ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_LESS "2.8.7")
|
||||
FUNCTION(MESSAGE_ONCE id out)
|
||||
MESSAGE(STATUS "${out}")
|
||||
ENDFUNCTION()
|
||||
ELSE()
|
||||
FUNCTION(MESSAGE_ONCE id out)
|
||||
STRING(MD5 hash "${out}")
|
||||
IF(NOT __msg1_${id} STREQUAL "${hash}")
|
||||
MESSAGE(STATUS "${out}")
|
||||
ENDIF()
|
||||
SET(__msg1_${id} ${hash} CACHE INTERNAL "")
|
||||
ENDFUNCTION()
|
||||
ENDIF()
|
||||
ENDIF()
|
||||
|
||||
IF(NOT INSTALL_LAYOUT)
|
||||
IF(NOT CMAKE_BUILD_TYPE)
|
||||
SET(CMAKE_BUILD_TYPE RELWITHDEBINFO CACHE STRING
|
||||
|
@@ -350,13 +350,12 @@ void PredicateOperator::setOpType(Type& l, Type& r)
|
||||
fOperationType.colDataType = execplan::CalpontSystemCatalog::LONGDOUBLE;
|
||||
fOperationType.colWidth = sizeof(long double);
|
||||
}
|
||||
/*
|
||||
else
|
||||
{
|
||||
fOperationType.colDataType = execplan::CalpontSystemCatalog::DOUBLE;
|
||||
fOperationType.colWidth = 8;
|
||||
}
|
||||
*/
|
||||
|
||||
cs = get_charset(fOperationType.charsetNumber, MYF(MY_WME));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user