Skip to content

Commit

Permalink
refractor: Fix typo of PhysicalAggrerationNode
Browse files Browse the repository at this point in the history
#1770: There are 3 instances in this file wherein, PhysicalAggrerationNode has been replaced with PhysicalAggregationNode
  • Loading branch information
SohamRatnaparkhi authored May 10, 2022
1 parent b2869ca commit 18d788d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hybridse/src/vm/transform.cc
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Status BatchModeTransformer::InitFnInfo(PhysicalOpNode* node,
}
case kAggregation: {
// Code generation for having condition
CHECK_STATUS(GenHavingFilter(&(dynamic_cast<PhysicalAggrerationNode*>(node))->having_condition_,
CHECK_STATUS(GenHavingFilter(&(dynamic_cast<PhysicalAggregationNode*>(node))->having_condition_,
project_op->producers()[0]->schemas_ctx()));
break;
}
Expand Down Expand Up @@ -1183,8 +1183,8 @@ Status BatchModeTransformer::CreatePhysicalProjectNode(
break;
}
case kAggregation: {
PhysicalAggrerationNode* agg_op = nullptr;
CHECK_STATUS(CreateOp<PhysicalAggrerationNode>(&agg_op, depend,
PhysicalAggregationNode* agg_op = nullptr;
CHECK_STATUS(CreateOp<PhysicalAggregationNode>(&agg_op, depend,
column_projects, having_condition));
*output = agg_op;
break;
Expand Down

0 comments on commit 18d788d

Please sign in to comment.