or_absorption.sql 203 B

12345678
  1. pragma config.flags("OptimizerFlags", "ExtractCommonPredicatesFromLogicalOps");
  2. $a = 1 > 2;
  3. $b = 3 < 4;
  4. $c = 5 < 6;
  5. select ($a and $b or $b) == $b;
  6. select ($c and ($b or $a) or $a or $b) == ($a or $b)