Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: change {code} to {noformat} because {code} macro is broken

...

For example, creating an ORC stored table without compression:

Code Blocknoformat
create table Addresses (
  name string,
  street string,
  city string,
  state string,
  zip int
) stored as orc tblproperties ("orc.compress"="NONE");

...