replace(node, new FalseValue());
}
else if (arg instanceof SqlCase) {
SqlExpr rep = null;
SqlExpr prev = null;
SqlCase scase = (SqlCase)arg;
for (Entry entry : scase.getEntries()) {
SqlExpr condition = entry.getCondition();
if (rep == null) {
rep = and(condition.clone(), isNull(entry.getResult().clone()));
prev = not(condition.clone());
}