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-1969 change reference array for multi-column UDAF in fixup code during prepPhase**
This commit is contained in:
@ -2709,8 +2709,8 @@ void TupleAggregateStep::prep1PhaseDistinctAggregate(
|
||||
}
|
||||
|
||||
functionVec2[i]->fAuxColumnIndex = lastCol++;
|
||||
oidsAggDist.push_back(oidsAggDist[j]); // Dummy?
|
||||
keysAggDist.push_back(keysAggDist[j]); // Dummy?
|
||||
oidsAggDist.push_back(oidsAgg[j]); // Dummy?
|
||||
keysAggDist.push_back(keysAgg[j]); // Dummy?
|
||||
scaleAggDist.push_back(0);
|
||||
precisionAggDist.push_back(0);
|
||||
typeAggDist.push_back(CalpontSystemCatalog::UBIGINT);
|
||||
@ -3797,8 +3797,8 @@ void TupleAggregateStep::prep2PhasesAggregate(
|
||||
}
|
||||
|
||||
functionVecUm[i]->fAuxColumnIndex = lastCol++;
|
||||
oidsAggUm.push_back(oidsAggUm[j]); // Dummy?
|
||||
keysAggUm.push_back(keysAggUm[j]); // Dummy?
|
||||
oidsAggUm.push_back(oidsAggPm[j]); // Dummy?
|
||||
keysAggUm.push_back(keysAggPm[j]); // Dummy?
|
||||
scaleAggUm.push_back(0);
|
||||
precisionAggUm.push_back(0);
|
||||
typeAggUm.push_back(CalpontSystemCatalog::UBIGINT);
|
||||
@ -4897,8 +4897,8 @@ void TupleAggregateStep::prep2PhasesDistinctAggregate(
|
||||
}
|
||||
|
||||
functionVecUm[i]->fAuxColumnIndex = lastCol++;
|
||||
oidsAggDist.push_back(oidsAggUm[j]); // Dummy?
|
||||
keysAggDist.push_back(keysAggUm[j]); // Dummy?
|
||||
oidsAggDist.push_back(oidsAggPm[j]); // Dummy?
|
||||
keysAggDist.push_back(keysAggPm[j]); // Dummy?
|
||||
scaleAggDist.push_back(0);
|
||||
precisionAggDist.push_back(0);
|
||||
typeAggDist.push_back(CalpontSystemCatalog::UBIGINT);
|
||||
|
Reference in New Issue
Block a user