Uploaded image for project: 'Apache Drill'
  1. Apache Drill
  2. DRILL-5640

NOT <predicate> causes Error: SYSTEM ERROR: IllegalArgumentException: Invalid value for boolean: AA

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 1.10.0
    • None
    • Server
    • None
    • Drill 1.10

    Description

      Following statement will fail, will not fail when NOT removed

      select TJOIN2.RNUM, TJOIN1.C1, TJOIN1.C2, TJOIN2.C2 as C2J2 from
      (
      values
      ( 0, 10, 15),
      ( 1, 20, 25),
      ( 2, cast(NULL as integer), 50)
      ) TJOIN1 (RNUM, C1, C2)
      inner join
      (
      values ( 0, 10, 'BB'),
      ( 1, 15, 'DD'),
      ( 2, cast(NULL as integer), 'EE'),
      ( 3, 10, 'FF')
      ) TJOIN2 (RNUM, C1, C2)
      on ( TJOIN1.C1 = TJOIN2.C1 and not TJOIN2.C2 = 'AA' )

      Error: SYSTEM ERROR: IllegalArgumentException: Invalid value for boolean: AA

      Attachments

        Activity

          People

            Unassigned Unassigned
            the6campbells N Campbell
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: