pub fn split_conjunction(expr: &BoundExpr, into: &mut Vec<BoundExpr>)Expand description
Splits a AND b AND c into its terms.
Only AND is split. Splitting an OR would produce terms that are not
individually true of every row the expression accepts, which is the classic
way to lose rows.