Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Apr 1, 2024
1 parent d077bb6 commit 3dfbe6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/pipeline/pipeline_fragment_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ Status PipelineFragmentContext::_build_pipelines(ExecNode* node, PipelinePtr cur
auto new_pipe = add_pipeline();
RETURN_IF_ERROR(_build_pipelines(node->child(0), new_pipe));
if (agg_node->is_probe_expr_ctxs_empty() && node->row_desc().num_slots() == 0) {
return Status::InternalError( "Illegal aggregate node " +
return Status::InternalError("Illegal aggregate node " +
std::to_string(agg_node->id()) +
": group by and output is empty");
}
Expand Down

0 comments on commit 3dfbe6e

Please sign in to comment.