You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hive> CREATE TABLE test_avro
> ROW FORMAT SERDE
> 'com.linkedin.haivvreo.AvroSerDe'
> WITH SERDEPROPERTIES (
> 'schema.url'='hdfs://localhost:8020/user/training/test.avsc')
> STORED as INPUTFORMAT
> 'com.linkedin.haivvreo.AvroContainerInputFormat'
> OUTPUTFORMAT
> 'com.linkedin.haivvreo.AvroContainerOutputFormat';
OK
hive> describe test_avro;
OK
error_error_error_error_error_error_error string from deserializer
cannot_determine_schema string from deserializer
check string from deserializer
schema string from deserializer
url string from deserializer
and string from deserializer
literal string from deserializer
Time taken: 0.062 seconds
hive> drop table 'test_avro';
The text was updated successfully, but these errors were encountered:
yeah, that's expected. Back in Hive 7, it was expected that initialize would return successfully. Throwing an exception left the table in a state where you couldn't change the table (fix it via alter table). This was our way of saying something way wrong but leaving the table in a state where it could be fixed. In Hive 8, I believe the behavior was changed so the init could throw an exception correctly (I think I did that patch...), but Haivvreo hasn't been updated yet.
The text was updated successfully, but these errors were encountered: