We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62ddb3 commit 68be4e0Copy full SHA for 68be4e0
velox/substrait/SubstraitToVeloxPlanValidator.cpp
@@ -471,7 +471,8 @@ bool SubstraitToVeloxPlanValidator::validate(
471
}
472
473
// Validate supported aggregate functions.
474
- std::unordered_set<std::string> unsupportedFuncs = {"collect_list"};
+ std::unordered_set<std::string> unsupportedFuncs = {
475
+ "collect_list", "collect_set"};
476
for (const auto& funcSpec : funcSpecs) {
477
auto funcName = subParser_->getSubFunctionName(funcSpec);
478
if (unsupportedFuncs.find(funcName) != unsupportedFuncs.end()) {
0 commit comments