Skip to content

Commit

Permalink
refractor: Fix typo of PhysicalAggrerationNode
Browse files Browse the repository at this point in the history
#1770: There is 1 instance in this file wherein, PhysicalAggrerationNode has been replaced with PhysicalAggregationNode
  • Loading branch information
SohamRatnaparkhi authored May 10, 2022
1 parent a3b824a commit b2869ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hybridse/src/vm/runner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ ClusterTask RunnerBuilder::Build(PhysicalOpNode* node, Status& status) {
case kAggregation: {
AggRunner* runner = nullptr;
CreateRunner<AggRunner>(&runner, id_++, node->schemas_ctx(), op->GetLimitCnt(),
dynamic_cast<const PhysicalAggrerationNode*>(node)->having_condition_,
dynamic_cast<const PhysicalAggregationNode*>(node)->having_condition_,
op->project().fn_info());
return RegisterTask(node,
UnaryInheritTask(cluster_task, runner));
Expand Down

0 comments on commit b2869ca

Please sign in to comment.