blob: 62e8a1c97899bce8e25b915c9d43626e5e3723ed [file] [log] [blame]
--! qt:dataset:src1
set hive.mapred.mode=nonstrict;
-- SORT_BEFORE_DIFF
create table partition_test_partitioned(key string, value string) partitioned by (dt string);
insert overwrite table partition_test_partitioned partition(dt=100) select * from src1;
alter table partition_test_partitioned set fileformat rcfile;
insert overwrite table partition_test_partitioned partition(dt=101) select * from src1;
alter table partition_test_partitioned set fileformat Sequencefile;
insert overwrite table partition_test_partitioned partition(dt=102) select * from src1;
set hive.fetch.task.conversion=minimal;
explain select *, BLOCK__OFFSET__INSIDE__FILE from partition_test_partitioned where dt >=100 and dt <= 102;
select * from partition_test_partitioned where dt >=100 and dt <= 102;
set hive.fetch.task.conversion=more;
explain select *, BLOCK__OFFSET__INSIDE__FILE from partition_test_partitioned where dt >=100 and dt <= 102;
select * from partition_test_partitioned where dt >=100 and dt <= 102;