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;