opteryx icon indicating copy to clipboard operation
opteryx copied to clipboard

✨ common clauses in disjunctions (Boolean Factorization)

Open joocer opened this issue 1 year ago • 0 comments

Promote common parts of disjunctions to reduce the evaluation effort

WHERE ( A = B AND C = D ) OR ( A = B AND E = F )

=>

WHERE ( A = B ) AND ( E = F OR C = D )

joocer avatar Sep 07 '24 15:09 joocer