Skip to content

Commit 52be18b

Browse files
Minimise diff
Signed-off-by: Andy Kwok <[email protected]>
1 parent e95e2b0 commit 52be18b

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import org.opensearch.sql.analysis.symbol.Namespace;
2222
import org.opensearch.sql.analysis.symbol.Symbol;
2323
import org.opensearch.sql.ast.AbstractNodeVisitor;
24-
import org.opensearch.sql.ast.Node;
2524
import org.opensearch.sql.ast.expression.AggregateFunction;
2625
import org.opensearch.sql.ast.expression.AllFields;
2726
import org.opensearch.sql.ast.expression.And;
@@ -102,11 +101,6 @@ public Expression visitUnresolvedAttribute(UnresolvedAttribute node, AnalysisCon
102101
return visitIdentifier(node.getAttr(), context);
103102
}
104103

105-
@Override
106-
public Expression visitGeoIp(Node node, AnalysisContext context) {
107-
return super.visitGeoIp(node, context);
108-
}
109-
110104
@Override
111105
public Expression visitEqualTo(EqualTo node, AnalysisContext context) {
112106
Expression left = node.getLeft().accept(this, context);

core/src/main/java/org/opensearch/sql/ast/AbstractNodeVisitor.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,6 @@ public T visitEqualTo(EqualTo node, C context) {
131131
return visitChildren(node, context);
132132
}
133133

134-
public T visitGeoIp(Node node, C context) {
135-
return visitChildren(node, context);
136-
}
137-
138134
public T visitLiteral(Literal node, C context) {
139135
return visitChildren(node, context);
140136
}

0 commit comments

Comments
 (0)