You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-5514 Parallel disk join step.
This commit is contained in:
@ -481,7 +481,8 @@ int64_t JoinPartition::processSmallBuffer(RGData& rgData)
|
||||
|
||||
ret = writeByteStream(0, bs);
|
||||
|
||||
htSizeEstimate += rg.getRowCount() * rg.getColumnCount() * 64;
|
||||
if (rg.getRowCount())
|
||||
htSizeEstimate += rg.getDataSize();
|
||||
// Check whether this partition is now too big -> convert to split mode.
|
||||
if (htTargetSize < htSizeEstimate && canConvertToSplitMode())
|
||||
ret += convertToSplitMode();
|
||||
|
Reference in New Issue
Block a user