Skip to content

Commit

Permalink
Delete old exclude visitor function to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
alancai98 committed Jan 20, 2024
1 parent 16931ad commit 7fdfab7
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,6 @@ class PlanNodeEquivalentVisitor : PlanBaseVisitor<Boolean, PlanNode>() {
return true
}

override fun visitRelOpExcludeStepCollIndex(node: Rel.Op.Exclude.Step.CollIndex, ctx: PlanNode): Boolean {
if (!super.visitRelOpExcludeStepCollIndex(node, ctx)) return false
ctx as Rel.Op.Exclude.Step.CollIndex
if (node.index != ctx.index) return false
return true
}

override fun visitRelOpErr(node: Rel.Op.Err, ctx: PlanNode): Boolean {
if (!super.visitRelOpErr(node, ctx)) return false
ctx as Rel.Op.Err
Expand Down

0 comments on commit 7fdfab7

Please sign in to comment.