From 7fdfab7a851b032d2f90d9683e20243e5df545a3 Mon Sep 17 00:00:00 2001 From: Alan Cai Date: Fri, 19 Jan 2024 17:51:38 -0800 Subject: [PATCH] Delete old exclude visitor function to fix build --- .../org/partiql/planner/util/PlanNodeEquivalentVisitor.kt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/partiql-planner/src/test/kotlin/org/partiql/planner/util/PlanNodeEquivalentVisitor.kt b/partiql-planner/src/test/kotlin/org/partiql/planner/util/PlanNodeEquivalentVisitor.kt index 04179370b6..7c6d84e497 100644 --- a/partiql-planner/src/test/kotlin/org/partiql/planner/util/PlanNodeEquivalentVisitor.kt +++ b/partiql-planner/src/test/kotlin/org/partiql/planner/util/PlanNodeEquivalentVisitor.kt @@ -125,13 +125,6 @@ class PlanNodeEquivalentVisitor : PlanBaseVisitor() { 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