use of com.pingcap.tikv.expression.LogicalBinaryExpression in project tispark by pingcap.
the class PartAndFilterExprRewriter method visit.
public Expression visit(LogicalBinaryExpression node, Void context) {
Expression left = node.getLeft().accept(this, null);
Expression right = node.getRight().accept(this, null);
return new LogicalBinaryExpression(node.getCompType(), left, right);
}
Aggregations