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

Hive-tez has issues when different partitions work off of different input types

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.13.0, 0.14.0
    • 0.13.1, 0.14.0
    • Tez
    • None

    Description

      create table test (key int, value string) partitioned by (p int) stored as textfile;

      insert into table test partition (p=1) select * from src limit 10;

      alter table test set fileformat orc;

      insert into table test partition (p=2) select * from src limit 10;

      describe test;

      select * from test where p=1 and key > 0;
      select * from test where p=2 and key > 0;
      select * from test where key > 0;

      throws a classcast exception

      Attachments

        1. HIVE-6826.1.patch
          22 kB
          Vikram Dixit K
        2. HIVE-6826.2.patch
          22 kB
          Vikram Dixit K

        Issue Links

          Activity

            People

              vikram.dixit Vikram Dixit K
              vikram.dixit Vikram Dixit K
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: