PageRenderTime 50ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/release-0.0.0-rc0/hive/external/ql/src/test/queries/clientpositive/inputddl8.q

#
text | 10 lines | 8 code | 2 blank | 0 comment | 0 complexity | acb7e9a5680e93a7e030e5d807320c5c MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. CREATE TABLE INPUTDDL8 COMMENT 'This is a thrift based table'
  2. PARTITIONED BY(ds STRING, country STRING)
  3. CLUSTERED BY(aint) SORTED BY(lint) INTO 32 BUCKETS
  4. ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.thrift.ThriftDeserializer'
  5. WITH SERDEPROPERTIES ('serialization.class' = 'org.apache.hadoop.hive.serde2.thrift.test.Complex',
  6. 'serialization.format' = 'com.facebook.thrift.protocol.TBinaryProtocol')
  7. STORED AS SEQUENCEFILE;
  8. DESCRIBE EXTENDED INPUTDDL8;