Uploaded image for project: 'IMPALA'
  1. IMPALA
  2. IMPALA-7838

Planner's handling of parenthesized expressions is awkward

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Minor
    • Resolution: Unresolved
    • Impala 3.0
    • None
    • Frontend
    • None
    • ghx-label-4

    Description

      Consider two simple queries:

      SELECT 2 + 3 * 4 FROM ...
      SELECT (2 + 3) * 4 FROM ...
      

      The parenthesis are required in infix notation to override default precedence rules. When parsed, the difference shows up as different tree structures:

      (+ 2 (* 3 4))
      (* (+ 2 3) 4)
      

      Impala's expression nodes often wish to render the parse nodes back to SQL. A simple traversal will produce 2 + 3 * 4 in both cases, which is wrong. A fully parenthesized version would be correct, but a nuisance:

      (2 + (3 * 4))
      ((2 + 3) * 4)
      

      To recreate the user's original parenthisization, Impala tags each expression node with whether it was wrapped in parenthesis when parsed.

      All of this works as long as we leave the parse tree unchanged. But, if we do rewrites, we end up in a very confused state. For example, after constant folding should the above be enclosed in parenthesis or not?

      Take a more complex case:

      SELECT * FROM foo, bar ON ... WHERE (foo.a > 10) AND (bar.b = 20)
      

      Do we need to preserve the parenthesis in the emitted plan? In the above, no, we don't: they don't add information. Yet, the planner tries to preserve them.

          predicates: (foo.a > 10)
      

      By contrast:

      SELECT * FROM foo, bar ON ... WHERE foo.a > 10 AND bar.b = 20
      

      Produces:

          predicates: foo.a > 10
      

      Yet, functionally, the two are identical: the plan differences are unnecessary and are just noise.

      Again, if a rewrite occurs, it is not clear whether parenthesis should or should not be preserved.

      Today, a rewrite discards parenthesis (the rewritten node never has the printSqlInParenthesis flag set.) Yet, that could, conceivably, change the meaning of an expression when printed:

      a AND (b OR c OR FALSE) --> a AND b OR c -- what the user sees
      (a AND (b OR c OR FALSE)) --> (a AND (b OR c)) -- parse nodes
      (a AND (b OR c OR FALSE)) --> ((a AND b) OR c) -- user's parse
      

      The first is what the user would see, the second is how the parse tree represents the rewritten statement, the third is how the user would interpret the toSql() form with missing parenthesis.

      The problem is, we are approaching the problem incorrectly. Since we perform rewrites, we should use parenthesis only when to override precedence:

      foo.a + foo.b * 3
      (foo.a + foo.b) * 3
      

      That is, parenthesis should be generated based on precedence rules, not based on the original SQL source text. That way, parenthesis will be both consistent and accurate in the emitted, rewritten expressions.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              Paul.Rogers Paul Rogers
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated: