pub fn normalize_out_expr_with_alias_schema(
expr: Arc<dyn PhysicalExpr>,
alias_map: &HashMap<Column, Vec<Column>>,
schema: &SchemaRef
) -> Arc<dyn PhysicalExpr>
Expand description
Normalize the output expressions based on Alias Map and SchemaRef.
- If there is mapping in Alias Map, replace the Column in the output expressions with the 1st Column in Alias Map
- If the Column is invalid for the current Schema, replace the Column with a place holder UnKnownColumn