Creates a new `JoinInputMapper` and calculates the mapping of global context columns to local context columns.
(inputs: &[MirRelationExpr])
| 45 | /// Creates a new `JoinInputMapper` and calculates the mapping of global context |
| 46 | /// columns to local context columns. |
| 47 | pub fn new(inputs: &[MirRelationExpr]) -> Self { |
| 48 | Self::new_from_input_arities(inputs.iter().map(|i| i.arity())) |
| 49 | } |
| 50 | |
| 51 | /// Creates a new `JoinInputMapper` and calculates the mapping of global context |
| 52 | /// columns to local context columns. Using this method is more |