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-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:
@ -297,6 +297,7 @@ void ColumnInfo::setupDelayedFileCreation(
|
||||
column.mapOid,
|
||||
column.compressionType,
|
||||
dbRoot, partition, segment );
|
||||
colOp->findTypeHandler(column.width, column.dataType);
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
@ -896,7 +897,7 @@ int ColumnInfo::extendColumnOldExtent(
|
||||
}
|
||||
|
||||
rc = colOp->expandAbbrevColumnExtent( pFile, dbRootNext,
|
||||
(uint8_t*)&column.emptyVal, column.width);
|
||||
column.emptyVal, column.width);
|
||||
|
||||
if (rc != NO_ERROR)
|
||||
{
|
||||
@ -1422,6 +1423,7 @@ int ColumnInfo::setupInitialColumnExtent(
|
||||
column.mapOid,
|
||||
column.compressionType,
|
||||
dbRoot, partition, segment );
|
||||
colOp->findTypeHandler(column.width, column.dataType);
|
||||
|
||||
// Open the column file
|
||||
if (!colOp->exists(column.mapOid, dbRoot, partition, segment) )
|
||||
|
Reference in New Issue
Block a user