Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • TINYINT
  • SMALLINT
  • INT
  • BIGINT
  • BOOLEAN
  • FLOAT
  • DOUBLE
  • STRING
  • BINARY (Note: Only available starting with Hive 0.8.0)
  • TIMESTAMP (Note: Only available starting with Hive 0.8.0)
  • DECIMAL (Note: Only available starting with Hive 0.11.0)

Complex types:

  • arrays: ARRAY<data_type>
  • maps: MAP<primitive_type, data_type>
  • Wiki Markup
    structs: {{STRUCT<col_name : data_type \[COMMENT col_comment], ...>}}
  • union: UNIONTYPE<data_type, data_type, ...>

...