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

In Tez mode,dynamic partitioning query with union all fails at moveTask,Invalid partition key & values

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.2.0
    • 1.2.1, 1.3.0, 2.0.0
    • Tez
    • None

    Description

      create table dummy(i int);
      insert into table dummy values (1);
      select * from dummy;
      
      create table partunion1(id1 int) partitioned by (part1 string);
      
      set hive.exec.dynamic.partition.mode=nonstrict;
      set hive.execution.engine=tez;
      
      explain insert into table partunion1 partition(part1)
      select temps.* from (
      select 1 as id1, '2014' as part1 from dummy 
      union all 
      select 2 as id1, '2014' as part1 from dummy ) temps;
      
      insert into table partunion1 partition(part1)
      select temps.* from (
      select 1 as id1, '2014' as part1 from dummy 
      union all 
      select 2 as id1, '2014' as part1 from dummy ) temps;
      
      select * from partunion1;
      

      fails.

      Attachments

        1. HIVE-10929.1.patch
          8 kB
          Vikram Dixit K
        2. HIVE-10929.2.patch
          261 kB
          Vikram Dixit K
        3. HIVE-10929.3.patch
          261 kB
          Vikram Dixit K
        4. HIVE-10929.4.patch
          261 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:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: