region.sql 229 B

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