return super.visitComparisonExpression(node, complement);
}
node = normalizeSimpleComparison(node);
Symbol symbol = Symbol.fromQualifiedName(((QualifiedNameReference) node.getLeft()).getName());
ColumnType columnType = checkedTypeLookup(symbol);
ColumnHandle columnHandle = checkedColumnHandleLookup(symbol);
Object value = LiteralInterpreter.evaluate(node.getRight());
// Handle the cases where implicit coercions can happen in comparisons
// TODO: how to abstract this out