partsupp.sql 250 B

123456789101112
  1. create database if not exists ${DB};
  2. use ${DB};
  3. drop table if exists partsupp;
  4. create table partsupp
  5. stored as ${FILE}
  6. TBLPROPERTIES('orc.bloom.filter.columns'='*','orc.compress'='ZLIB')
  7. as select * from ${SOURCE}.partsupp
  8. cluster by PS_SUPPKEY
  9. ;