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
MCOL-641 Refactor empty value implementation in writeengine.
This commit is contained in:
committed by
Roman Nozdrin
parent
97ee1609b2
commit
824615a55b
@ -639,8 +639,6 @@ void Convertor::convertColType(ColStruct* curStruct)
|
||||
break;
|
||||
|
||||
default:
|
||||
// WIP replace with BINARY
|
||||
//*internalType = WriteEngine::WR_INT128;
|
||||
*internalType = WriteEngine::WR_BINARY;
|
||||
break;
|
||||
}
|
||||
@ -710,14 +708,8 @@ void Convertor::convertColType(ColStruct* curStruct)
|
||||
|
||||
// check whether width is in sync with the requirement
|
||||
*width = getCorrectRowWidth(dataType, *width);
|
||||
|
||||
// This is the patch for the decimal thing, override
|
||||
// if (dataType == CalpontSystemCatalog::DECIMAL)
|
||||
// {
|
||||
// *internalType = *width <= 4 ?
|
||||
// WriteEngine::WR_INT : WriteEngine::WR_LONGLONG;
|
||||
// }
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
* DESCRIPTION:
|
||||
|
Reference in New Issue
Block a user