You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +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++;
|
functionVec2[i]->fAuxColumnIndex = lastCol++;
|
||||||
oidsAggDist.push_back(oidsAggDist[j]); // Dummy?
|
oidsAggDist.push_back(oidsAgg[j]); // Dummy?
|
||||||
keysAggDist.push_back(keysAggDist[j]); // Dummy?
|
keysAggDist.push_back(keysAgg[j]); // Dummy?
|
||||||
scaleAggDist.push_back(0);
|
scaleAggDist.push_back(0);
|
||||||
precisionAggDist.push_back(0);
|
precisionAggDist.push_back(0);
|
||||||
typeAggDist.push_back(CalpontSystemCatalog::UBIGINT);
|
typeAggDist.push_back(CalpontSystemCatalog::UBIGINT);
|
||||||
@@ -3797,8 +3797,8 @@ void TupleAggregateStep::prep2PhasesAggregate(
|
|||||||
}
|
}
|
||||||
|
|
||||||
functionVecUm[i]->fAuxColumnIndex = lastCol++;
|
functionVecUm[i]->fAuxColumnIndex = lastCol++;
|
||||||
oidsAggUm.push_back(oidsAggUm[j]); // Dummy?
|
oidsAggUm.push_back(oidsAggPm[j]); // Dummy?
|
||||||
keysAggUm.push_back(keysAggUm[j]); // Dummy?
|
keysAggUm.push_back(keysAggPm[j]); // Dummy?
|
||||||
scaleAggUm.push_back(0);
|
scaleAggUm.push_back(0);
|
||||||
precisionAggUm.push_back(0);
|
precisionAggUm.push_back(0);
|
||||||
typeAggUm.push_back(CalpontSystemCatalog::UBIGINT);
|
typeAggUm.push_back(CalpontSystemCatalog::UBIGINT);
|
||||||
@@ -4897,8 +4897,8 @@ void TupleAggregateStep::prep2PhasesDistinctAggregate(
|
|||||||
}
|
}
|
||||||
|
|
||||||
functionVecUm[i]->fAuxColumnIndex = lastCol++;
|
functionVecUm[i]->fAuxColumnIndex = lastCol++;
|
||||||
oidsAggDist.push_back(oidsAggUm[j]); // Dummy?
|
oidsAggDist.push_back(oidsAggPm[j]); // Dummy?
|
||||||
keysAggDist.push_back(keysAggUm[j]); // Dummy?
|
keysAggDist.push_back(keysAggPm[j]); // Dummy?
|
||||||
scaleAggDist.push_back(0);
|
scaleAggDist.push_back(0);
|
||||||
precisionAggDist.push_back(0);
|
precisionAggDist.push_back(0);
|
||||||
typeAggDist.push_back(CalpontSystemCatalog::UBIGINT);
|
typeAggDist.push_back(CalpontSystemCatalog::UBIGINT);
|
||||||
|
Reference in New Issue
Block a user