You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-4412 Introduce TypeHandler::getEmptyValueForType to return const ptr for an empty value
WE changes for SQL DML and DDL operations Changes for bulk operations Changes for scanning operations Cleanup
This commit is contained in:
@ -563,10 +563,9 @@ int BulkLoad::preProcess( Job& job, int tableNo,
|
||||
job.jobTableList[tableNo].colList[i].weType = curColStruct.colType;
|
||||
// set width to correct column width
|
||||
job.jobTableList[tableNo].colList[i].width = curColStruct.colWidth;
|
||||
getEmptyRowValue(
|
||||
job.jobTableList[tableNo].colList[i].dataType,
|
||||
job.jobTableList[tableNo].colList[i].width,
|
||||
(uint8_t*)&job.jobTableList[tableNo].colList[i].emptyVal);
|
||||
job.jobTableList[tableNo].colList[i].emptyVal =
|
||||
getEmptyRowValue(job.jobTableList[tableNo].colList[i].dataType,
|
||||
job.jobTableList[tableNo].colList[i].width);
|
||||
|
||||
// check HWM for column file
|
||||
rc = BRMWrapper::getInstance()->getDbRootHWMInfo( curJobCol.mapOid,
|
||||
|
Reference in New Issue
Block a user