Skip to content

Commit d985631

Browse files
committed
add stddev_samp
1 parent 47017d2 commit d985631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

velox/substrait/SubstraitToVeloxPlanValidator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ bool SubstraitToVeloxPlanValidator::validate(
396396
}
397397

398398
std::unordered_set<std::string> supportedFuncs = {
399-
"sum", "count", "avg", "min", "max"};
399+
"sum", "count", "avg", "min", "max", "stddev_samp"};
400400
for (const auto& funcSpec : funcSpecs) {
401401
auto funcName = subParser_->getSubFunctionName(funcSpec);
402402
if (supportedFuncs.find(funcName) == supportedFuncs.end()) {

0 commit comments

Comments
 (0)