Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-11839

Vectorization wrong results with filter of (CAST AS CHAR)

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Critical
    • Resolution: Fixed
    • None
    • 1.3.0, 2.0.0
    • Hive
    • None

    Description

      PROBLEM:
      For query such as
      select count(1) from table where CAST (id as CHAR(4))='1000';
      gives wrong results 0 than expected results.
      STEPS TO REPRODUCE:
      create table s1(id smallint) stored as orc;
      insert into table s1 values (1000),(1001),(1002),(1003),(1000);
      set hive.vectorized.execution.enabled=true;
      select count(1) from s1 where cast(id as char(4))='1000';
      – this gives 0
      set hive.vectorized.execution.enabled=false;
      select count(1) from s1 where cast(id as char(4))='1000';
      – this gives 2

      Attachments

        1. HIVE-11839.01.patch
          7 kB
          Matt McCline

        Activity

          People

            mmccline Matt McCline
            mmccline Matt McCline
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: