Skip to content

Commit

Permalink
Minimise diff
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Kwok <[email protected]>
  • Loading branch information
andy-k-improving committed Jan 13, 2025
1 parent e95e2b0 commit 52be18b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import org.opensearch.sql.analysis.symbol.Namespace;
import org.opensearch.sql.analysis.symbol.Symbol;
import org.opensearch.sql.ast.AbstractNodeVisitor;
import org.opensearch.sql.ast.Node;
import org.opensearch.sql.ast.expression.AggregateFunction;
import org.opensearch.sql.ast.expression.AllFields;
import org.opensearch.sql.ast.expression.And;
Expand Down Expand Up @@ -102,11 +101,6 @@ public Expression visitUnresolvedAttribute(UnresolvedAttribute node, AnalysisCon
return visitIdentifier(node.getAttr(), context);
}

@Override
public Expression visitGeoIp(Node node, AnalysisContext context) {
return super.visitGeoIp(node, context);
}

@Override
public Expression visitEqualTo(EqualTo node, AnalysisContext context) {
Expression left = node.getLeft().accept(this, context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,6 @@ public T visitEqualTo(EqualTo node, C context) {
return visitChildren(node, context);
}

public T visitGeoIp(Node node, C context) {
return visitChildren(node, context);
}

public T visitLiteral(Literal node, C context) {
return visitChildren(node, context);
}
Expand Down

0 comments on commit 52be18b

Please sign in to comment.