create table if not exists test_orc(

name string,

age int,

address string

) partitioned by (dt string)
STORED AS ORC;

 

set hive.execution.engine=tez;

set hive.llap.execution.mode=auto;

select * from test_orc;

 

posted on 2017-06-15 17:54  凌度  阅读(2348)  评论(0编辑  收藏  举报