fn semijoin_bijection(
    inputs: &[MirRelationExpr],
    equivalences: &Vec<Vec<MirScalarExpr>>
) -> Option<(BTreeMap<usize, usize>, BTreeMap<usize, usize>)>
Expand description

Determines bijection between equated columns of a binary join.

Returns nothing if not a binary join, or if any equivalences are not of two opposing columns. Returned maps go from the column of the first input to those of the second, and vice versa.