[ 
https://issues.apache.org/jira/browse/HIVE-6056?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rushil Gupta reopened HIVE-6056:
--------------------------------


Thought this was fixed in hive-0.12. However when I tried that, it failed with 
the error: 
java.lang.NoSuchMethodError: 
org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory.getPrimitiveJavaObjectInspector(Lorg/apache/hadoop/hive/serde2/typeinfo/PrimitiveTypeSpec;)Lorg/apache/hadoop/hive/serde2/objectinspector/primitive/AbstractPrimitiveJavaObjectInspector;
        



> The AvroSerDe gives out BadSchemaException if a partition is added to the 
> table
> -------------------------------------------------------------------------------
>
>                 Key: HIVE-6056
>                 URL: https://issues.apache.org/jira/browse/HIVE-6056
>             Project: Hive
>          Issue Type: Bug
>          Components: Database/Schema
>    Affects Versions: 0.11.0
>         Environment: amazon EMR (hadoop Amazon 1.0.3), avro-1.7.5
>            Reporter: Rushil Gupta
>
> While creating an external table if I do not add a partition, I am able to 
> read files using following format: 
> CREATE external TABLE event
> ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe'
> STORED AS INPUTFORMAT 
> 'org.apache.hadoop.hive.ql.io.avro.AvroContainerInputFormat'
> OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerOutputFormat'
> LOCATION 's3n://test-event/input/2013/14/10'
> TBLPROPERTIES ('avro.schema.literal' = '..some schema..');
> but if I add a partition based on date
> CREATE external TABLE event
> PARTITIONED BY (ds STRING)
> ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe'
> STORED AS INPUTFORMAT 
> 'org.apache.hadoop.hive.ql.io.avro.AvroContainerInputFormat'
> OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerOutputFormat'
> LOCATION 's3n://test-event/input/'
> TBLPROPERTIES ('avro.schema.literal' = '..some schema..');
> ALTER TABLE event ADD IF NOT EXISTS PARTITION (ds = '2013_12_16') LOCATION 
> '2013/12/16/';
> I get the following exception:
> java.io.IOException:org.apache.hadoop.hive.serde2.avro.BadSchemaException



--
This message was sent by Atlassian JIRA
(v6.1.4#6159)

Reply via email to