Skip to content

Commit b2bb38e

Browse files
rui-mozhejiangxiaomai
authored andcommitted
Pass stddev_samp in validator (#73)
1 parent 3d09bee commit b2bb38e

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)