pub fn physical_to_column_exprs(
exprs: &[(Arc<dyn PhysicalExpr>, String)],
) -> Option<Vec<(Column, String)>>
Expand description
Downcasts all the expressions in exprs
to Column
s. If any of the given
expressions is not a Column
, returns None
.