You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Merge pull request #2044 from dhall-MariaDB/MCOL-3738
MCOL-3738 COUNT(DISTINCT) with multiple parms
This commit is contained in:
@ -176,7 +176,7 @@ struct RowAggFunctionCol
|
||||
RowAggFunctionCol(RowAggFunctionType aggFunction, RowAggFunctionType stats,
|
||||
int32_t inputColIndex, int32_t outputColIndex, int32_t auxColIndex = -1) :
|
||||
fAggFunction(aggFunction), fStatsFunction(stats), fInputColumnIndex(inputColIndex),
|
||||
fOutputColumnIndex(outputColIndex), fAuxColumnIndex(auxColIndex) {}
|
||||
fOutputColumnIndex(outputColIndex), fAuxColumnIndex(auxColIndex), hasMultiParm(false) {}
|
||||
virtual ~RowAggFunctionCol() = default;
|
||||
|
||||
virtual void serialize(messageqcpp::ByteStream& bs) const;
|
||||
@ -203,6 +203,8 @@ struct RowAggFunctionCol
|
||||
// with fAggFunction == ROWAGG_MULTI_PARM. Order is important.
|
||||
// If this parameter is constant, that value is here.
|
||||
execplan::SRCP fpConstCol;
|
||||
|
||||
bool hasMultiParm;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user