Uploaded image for project: 'Calcite'
  1. Calcite
  2. CALCITE-2456

VolcanoRuleCall#match works incorrectly for unordered child operand

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.17.0
    • 1.20.0
    • core
    • Test on Calcite master branch as of 8/7/2018 with Java 8.

    Description

      Bug Description:

      This bug occurs when there'a rule matching a Union operator with an unordered operand: 

      `operand(Union.class, unordered(operand(RelTypeB.class, any())))`,

      with an plan tree that the operand to match is not the first input to the union:

      LogicalUnion
        RelTypeA
        RelTypeB

      The expected behavior is that this plan tree should fire the match, because `unordered` means matching any child of the union operator.

      The bug is that the tree is not matched as expected, either matching in descending order (rule is triggered from LogicalUnion) or in ascending order (rule is triggered by adding another node equivalent to RelTypeB).

      How to reproduce:

      See the test cases in https://github.com/apache/calcite/pull/784

      Bug cause:

      The cause of this issue is that VolcanoRuleCall doesn't handle `unordered` child operand at all. It uses `operand.ordinalInParent` to check if the matched RelNode matches the operand's ordinal(position) in parent's inputs. The value of `ordinalInParent` is always `0` in this case, requires the matched RelNode to also be the first input.

      However, that only makes sense when child policy is `some`, which strictly requires to match in order. For child policy `unordered`, it should match regardless of the position of RelNode in the inputs.

      Bug fix:

      This bug can be fixed with changes to function`VolcanoRuleCall#matchRecurse`:
      See https://github.com/apache/calcite/pull/784

       

      Thanks.

      Attachments

        1. UnorderedBugTest.java
          4 kB
          Zuozhi Wang

        Issue Links

          Activity

            People

              Unassigned Unassigned
              zuozhiw Zuozhi Wang
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 1h
                  1h