Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Hive ORC or AVRO format with field delimiters

avatar
Expert Contributor

What does it mean for a hive table with ORC or Avro format to have the Field delimiter specified? Does hive ignore even if its specified?

For example,

CREATE TABLE if not exists T (
C1    STRING ,
C2    STRING )
ROW FORMAT DELIMITED
FIELDS TERMINATED BY '\001' 
STORED AS ORC tblproperties ("orc.compress"="SNAPPY")
1 ACCEPTED SOLUTION

avatar
Guru

Yes. Once you specific STORED AS ORC, OrcSerde is what is used which ignores those. Your SerDe can decide which of them in create table script can be used.

View solution in original post

1 REPLY 1

avatar
Guru

Yes. Once you specific STORED AS ORC, OrcSerde is what is used which ignores those. Your SerDe can decide which of them in create table script can be used.