From f3b9b8315b7f5703cb61b54e6ec9e6ce4ac9149d Mon Sep 17 00:00:00 2001 From: Rui Mo Date: Mon, 3 Nov 2025 23:17:01 +0800 Subject: [PATCH] Fix --- cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc b/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc index 4b39af51c62..1d953cfd661 100644 --- a/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc +++ b/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc @@ -1179,7 +1179,8 @@ bool SubstraitToVeloxPlanValidator::validateAggRelFunctionType(const ::substrait // details can be found in // https://github.com/facebookincubator/velox/pull/11999#issuecomment-3274577979 // and https://github.com/facebookincubator/velox/issues/12830. - return true; + resolved = true; + break; } }