You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Edward Capriolo (JIRA)" <ji...@apache.org> on 2010/04/22 21:07:49 UTC

[jira] Created: (HIVE-1319) Alter table add partition fails if ADD PARTITION is not in upper case

Alter table add partition fails if ADD PARTITION is not in upper case
---------------------------------------------------------------------

                 Key: HIVE-1319
                 URL: https://issues.apache.org/jira/browse/HIVE-1319
             Project: Hadoop Hive
          Issue Type: Bug
    Affects Versions: 0.5.0
            Reporter: Edward Capriolo


{noformat}
dfs -mkdir /tmp/a;
dfs -mkdir /tmp/a/b;
dfs -mkdir /tmp/a/c;
create external table abc( key string, val string  )
partitioned by (part int)
location '/tmp/a/';

alter table abc ADD PARTITION (part=1)  LOCATION 'b';
alter table abc add partition (part=2)  LOCATION 'c';

select key from abc where part=1;
select key from abct where part=70;
{noformat}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.