if (operand instanceof ExprNodeColumnDesc) {
LOG.debug("Filter " + udf + " is identified as a value assignment, propagate it.");
ExprNodeColumnDesc c = (ExprNodeColumnDesc) operand;
ColumnInfo ci = resolveColumn(rr, c);
if (ci != null) {
constants.put(ci, new ExprNodeNullDesc());
}
}
}
}