aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/show_create_table_alter-3-2a91d52719cf4552ebeb867204552a26
blob: 2ece813dd7d56f06105f44b0f382ceeade611bca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
CREATE  TABLE tmp_showcrt1(
  key smallint, 
  value float)
COMMENT 'temporary table'
CLUSTERED BY ( 
  key) 
SORTED BY ( 
  value DESC) 
INTO 5 BUCKETS
ROW FORMAT SERDE 
  'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe' 
STORED AS INPUTFORMAT 
  'org.apache.hadoop.mapred.TextInputFormat' 
OUTPUTFORMAT 
  'org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat'
LOCATION
  'file:/tmp/sparkHiveWarehouse1280221975983654134/tmp_showcrt1'
TBLPROPERTIES (
  'EXTERNAL'='FALSE', 
  'last_modified_by'='tianyi', 
  'last_modified_time'='1407132100', 
  'transient_lastDdlTime'='1407132100')