Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add timestamp & decimal in 0.14.0 (HIVE-6394 & HIVE-6367)

...

No Format
CREATE TABLE parquet_test (
 id int,
 str string,
 mp MAP<STRING,STRING>,
 lst ARRAY<STRING>,
 strct STRUCT<A:STRING,B:STRING>) 
PARTITIONED BY (part string)
STORED AS PARQUET;

Limitations

  • Binary, timestamp, date, char, and varchar or decimal support are pending (HIVE-6384
  • Timestamp and decimal are not supported in Hive releases 0.10.0 through 0.13.1, but Hive 0.14.0 adds support for timestamp (HIVE-6394) and decimal (HIVE-6367)
  • Create Table AS SELECT (CTAS) and column rename support are pending (HIVE-6375)

...