Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
Signed-off-by: AilinKid <314806019@qq.com>
  • Loading branch information
AilinKid committed Aug 15, 2024
1 parent b6d684a commit 715acec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pkg/planner/core/logical_plans.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ var (
_ base.LogicalPlan = &LogicalTableScan{}
_ base.LogicalPlan = &LogicalIndexScan{}
_ base.LogicalPlan = &logicalop.LogicalUnionAll{}
_ base.LogicalPlan = &logicalop.LogicalPartitionUnionAll{}
_ base.LogicalPlan = &logicalop.LogicalSort{}
_ base.LogicalPlan = &logicalop.LogicalLock{}
_ base.LogicalPlan = &logicalop.LogicalLimit{}
Expand Down
2 changes: 1 addition & 1 deletion pkg/planner/core/operator/logicalop/logical_union_all.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ func (p *LogicalUnionAll) DeriveStats(childStats []*property.StatsInfo, selfSche

// ExhaustPhysicalPlans implements base.LogicalPlan.<14th> interface.
func (p *LogicalUnionAll) ExhaustPhysicalPlans(prop *property.PhysicalProperty) ([]base.PhysicalPlan, bool, error) {
return utilfuncp.ExhaustPhysicalPlans4LogicalPartitionUnionAll(p, prop)
return utilfuncp.ExhaustPhysicalPlans4LogicalUnionAll(p, prop)
}

// ExtractCorrelatedCols inherits BaseLogicalPlan.LogicalPlan.<15th> implementation.
Expand Down

0 comments on commit 715acec

Please sign in to comment.