Skip to content
Snippets Groups Projects
Commit f892d927 authored by Yash Datta's avatar Yash Datta Committed by Michael Armbrust
Browse files

[SPARK-7142] [SQL] Minor enhancement to BooleanSimplification Optimizer rule

Use these in the optimizer as well:

            A and (not(A) or B) => A and B
            not(A and B) => not(A) or not(B)
            not(A or B) => not(A) and not(B)

Author: Yash Datta <Yash.Datta@guavus.com>

Closes #5700 from saucam/bool_simp.
parent 4f1daa1e
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment