1
0
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:
Gagan Goel
2022-07-14 17:53:17 -04:00
parent 94e9f55940
commit 1355237ca3
8 changed files with 46 additions and 15 deletions

View File

@ -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);