Details
Description
insert into table test_acid partition(pt='pt_2')
values( 2, '中文_2' , 'city_2' )
;
hive> select *
> from test_acid
> ;
OK
2 -�_2 city_2 pt_2
Time taken: 0.237 seconds, Fetched: 1 row(s)
hive>
CREATE TABLE test_acid(id INT,
name STRING,
city STRING)
PARTITIONED BY (pt STRING)
clustered by (id) into 1 buckets
stored as ORCFILE
TBLPROPERTIES('transactional'='true')
;