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-5021 Some minor fixes.
This commit is contained in:
@ -849,7 +849,7 @@ void ColumnCommand::nextLBID()
|
||||
lbid += colType.colWidth;
|
||||
|
||||
if (_hasAuxCol)
|
||||
lbidAux += 1;
|
||||
lbidAux += execplan::AUX_COL_WIDTH;
|
||||
}
|
||||
|
||||
void ColumnCommand::duplicate(ColumnCommand* cc)
|
||||
@ -961,7 +961,7 @@ void ColumnCommand::getLBIDList(uint32_t loopCount, vector<int64_t>* lbids)
|
||||
if (_hasAuxCol)
|
||||
{
|
||||
firstLBID = lbidAux;
|
||||
lastLBID = firstLBID + (loopCount * 1) - 1;
|
||||
lastLBID = firstLBID + (loopCount * execplan::AUX_COL_WIDTH) - 1;
|
||||
|
||||
for (i = firstLBID; i <= lastLBID; i++)
|
||||
lbids->push_back(i);
|
||||
|
Reference in New Issue
Block a user