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

Drop partition problem

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Duplicate
    • 0.9.0
    • 0.10.0
    • SQL
    • None
    • hive 0.9 bin, and postgres as metadata.

    Description

      Setup a new hive 0.9 client, follow this steps

      hive> create table t1(a int) partitioned by ( dt int );
      OK
      Time taken: 0.097 seconds
      hive> load data local inpath '/tmp/t' into table t1 partition (dt=111);
      Copying data from file:/tmp/t
      Copying file: file:/tmp/t
      Loading data to table default.t1 partition (dt=111)
      OK
      Time taken: 0.375 seconds
      hive> show partitions t1;
      OK
      dt=111
      Time taken: 0.108 seconds
      hive> alter table t1 drop partition ( dt=111 );
      FAILED: Error in semantic analysis: Partition not found dt = 111
      hive> alter table t1 drop partition ( dt='111' );
      FAILED: Error in semantic analysis: Partition not found dt = '111'

      after change partition column type to string, it's worked.

      Attachments

        Activity

          People

            Unassigned Unassigned
            wd wd
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: