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-267 DML support
* DML writes for multi-block dictionary (blob) now works * PrimProc fixed so that the first block in multi-block is read correctly * Performance optimisation (removed string copy into stack) for new dictionary entries
This commit is contained in:
@ -1587,7 +1587,7 @@ int ChunkManager::calculateHeaderSize(int width)
|
||||
int rowsPerExtent = BRMWrapper::getInstance()->getExtentRows();
|
||||
int rowsPerFile = rowsPerExtent * extentsPerFile;
|
||||
int stringsPerBlock = 8180 / (width + 2); // 8180 = 8192 - 12
|
||||
//TODO: temporary fix for Blob
|
||||
// BLOB is 1 string per block
|
||||
if (stringsPerBlock == 0)
|
||||
stringsPerBlock = 1;
|
||||
int blocksNeeded = rowsPerFile / stringsPerBlock;
|
||||
|
Reference in New Issue
Block a user