diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/predicate/conditional/Case.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/predicate/conditional/Case.java index 7536612a67dd7..1354bb27034ac 100644 --- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/predicate/conditional/Case.java +++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/predicate/conditional/Case.java @@ -116,12 +116,21 @@ protected TypeResolution resolveType() { /** * All foldable conditions that fold to FALSE should have - * been removed by the {@link Optimizer}. + * been removed by the {@link Optimizer}#SimplifyCase. */ @Override public boolean foldable() { - return (conditions.isEmpty() && elseResult.foldable()) || - (conditions.size() == 1 && conditions.get(0).condition().foldable() && conditions.get(0).result().foldable()); + if (conditions.isEmpty() && elseResult.foldable()) { + return true; + } + if (conditions.size() == 1 && conditions.get(0).condition().foldable()) { + if (conditions.get(0).condition().fold() == Boolean.TRUE) { + return conditions().get(0).result().foldable(); + } else { + return elseResult().foldable(); + } + } + return false; } @Override diff --git a/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/optimizer/OptimizerTests.java b/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/optimizer/OptimizerTests.java index aacd62dd05670..95b6915c9d57d 100644 --- a/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/optimizer/OptimizerTests.java +++ b/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/optimizer/OptimizerTests.java @@ -639,6 +639,8 @@ public void testSimplifyCaseConditionsFoldWhenFalse() { new IfConditional(EMPTY, new Equals(EMPTY, TWO, ONE), Literal.of(EMPTY, "bar2")), new IfConditional(EMPTY, new GreaterThan(EMPTY, getFieldAttribute(), ONE), Literal.of(EMPTY, "foo2")), Literal.of(EMPTY, "default"))); + assertFalse(c.foldable()); + Expression e = new SimplifyCase().rule(c); assertEquals(Case.class, e.getClass()); c = (Case) e; @@ -664,13 +666,15 @@ public void testSimplifyCaseConditionsFoldWhenTrue() { // ELSE 'default' // END - SimplifyCase rule = new SimplifyCase(); Case c = new Case(EMPTY, Arrays.asList( new IfConditional(EMPTY, new Equals(EMPTY, getFieldAttribute(), ONE), Literal.of(EMPTY, "foo1")), new IfConditional(EMPTY, new Equals(EMPTY, ONE, ONE), Literal.of(EMPTY, "bar1")), new IfConditional(EMPTY, new Equals(EMPTY, TWO, ONE), Literal.of(EMPTY, "bar2")), new IfConditional(EMPTY, new GreaterThan(EMPTY, getFieldAttribute(), ONE), Literal.of(EMPTY, "foo2")), Literal.of(EMPTY, "default"))); + assertFalse(c.foldable()); + + SimplifyCase rule = new SimplifyCase(); Expression e = rule.rule(c); assertEquals(Case.class, e.getClass()); c = (Case) e; @@ -681,7 +685,7 @@ public void testSimplifyCaseConditionsFoldWhenTrue() { assertEquals(TypeResolution.TYPE_RESOLVED, c.typeResolved()); } - public void testSimplifyCaseConditionsFoldCompletely() { + public void testSimplifyCaseConditionsFoldCompletely_FoldableElse() { // CASE WHEN 1 = 2 THEN 'foo1' // WHEN 1 = 1 THEN 'foo2' // ELSE 'default' @@ -691,11 +695,13 @@ public void testSimplifyCaseConditionsFoldCompletely() { // // 'foo2' - SimplifyCase rule = new SimplifyCase(); Case c = new Case(EMPTY, Arrays.asList( new IfConditional(EMPTY, new Equals(EMPTY, ONE, TWO), Literal.of(EMPTY, "foo1")), new IfConditional(EMPTY, new Equals(EMPTY, ONE, ONE), Literal.of(EMPTY, "foo2")), Literal.of(EMPTY, "default"))); + assertFalse(c.foldable()); + + SimplifyCase rule = new SimplifyCase(); Expression e = rule.rule(c); assertEquals(Case.class, e.getClass()); c = (Case) e; @@ -706,9 +712,34 @@ public void testSimplifyCaseConditionsFoldCompletely() { assertEquals(TypeResolution.TYPE_RESOLVED, c.typeResolved()); } - public void testSimplifyIif_ConditionTrue() { + public void testSimplifyCaseConditionsFoldCompletely_NonFoldableElse() { + // CASE WHEN 1 = 2 THEN 'foo1' + // ELSE myField + // END + // + // ==> + // + // myField (non-foldable) + + Case c = new Case(EMPTY, Arrays.asList( + new IfConditional(EMPTY, new Equals(EMPTY, ONE, TWO), Literal.of(EMPTY, "foo1")), + getFieldAttribute("myField"))); + assertFalse(c.foldable()); + + SimplifyCase rule = new SimplifyCase(); + Expression e = rule.rule(c); + assertEquals(Case.class, e.getClass()); + c = (Case) e; + assertEquals(0, c.conditions().size()); + assertFalse(c.foldable()); + assertEquals("myField", Expressions.name(c.elseResult())); + } + + public void testSimplifyIif_ConditionTrue_FoldableResult() { SimplifyCase rule = new SimplifyCase(); Iif iif = new Iif(EMPTY, new Equals(EMPTY, ONE, ONE), Literal.of(EMPTY, "foo"), Literal.of(EMPTY, "bar")); + assertTrue(iif.foldable()); + Expression e = rule.rule(iif); assertEquals(Iif.class, e.getClass()); iif = (Iif) e; @@ -718,9 +749,26 @@ public void testSimplifyIif_ConditionTrue() { assertEquals(TypeResolution.TYPE_RESOLVED, iif.typeResolved()); } - public void testSimplifyIif_ConditionFalse() { + public void testSimplifyIif_ConditionTrue_NonFoldableResult() { + SimplifyCase rule = new SimplifyCase(); + Iif iif = new Iif(EMPTY, new Equals(EMPTY, ONE, ONE), getFieldAttribute("myField"), Literal.of(EMPTY, "bar")); + assertFalse(iif.foldable()); + + Expression e = rule.rule(iif); + assertEquals(Iif.class, e.getClass()); + iif = (Iif) e; + assertEquals(1, iif.conditions().size()); + assertFalse(iif.foldable()); + assertTrue(iif.conditions().get(0).condition().foldable()); + assertEquals(Boolean.TRUE, iif.conditions().get(0).condition().fold()); + assertEquals("myField", Expressions.name(iif.conditions().get(0).result())); + } + + public void testSimplifyIif_ConditionFalse_FoldableResult() { SimplifyCase rule = new SimplifyCase(); Iif iif = new Iif(EMPTY, new Equals(EMPTY, ONE, TWO), Literal.of(EMPTY, "foo"), Literal.of(EMPTY, "bar")); + assertTrue(iif.foldable()); + Expression e = rule.rule(iif); assertEquals(Iif.class, e.getClass()); iif = (Iif) e; @@ -730,6 +778,19 @@ public void testSimplifyIif_ConditionFalse() { assertEquals(TypeResolution.TYPE_RESOLVED, iif.typeResolved()); } + public void testSimplifyIif_ConditionFalse_NonFoldableResult() { + SimplifyCase rule = new SimplifyCase(); + Iif iif = new Iif(EMPTY, new Equals(EMPTY, ONE, TWO), Literal.of(EMPTY, "foo"), getFieldAttribute("myField")); + assertFalse(iif.foldable()); + + Expression e = rule.rule(iif); + assertEquals(Iif.class, e.getClass()); + iif = (Iif) e; + assertEquals(0, iif.conditions().size()); + assertFalse(iif.foldable()); + assertEquals("myField", Expressions.name(iif.elseResult())); + } + // // Logical simplifications //