blob: 626af886e8906e6152ee0d15788277db4d92f771 [file] [log] [blame]
--! qt:dataset:src
set hive.mapred.mode=nonstrict;
set hive.exec.reducers.max = 10;
set hive.map.groupby.sorted=true;
-- SORT_QUERY_RESULTS
CREATE TABLE T1_n149(key STRING, val STRING) PARTITIONED BY (ds string)
CLUSTERED BY (key) SORTED BY (key) INTO 2 BUCKETS;
-- perform an insert to make sure there are 2 files
INSERT OVERWRITE TABLE T1_n149 PARTITION (ds='1')
SELECT * from src where key = 0 or key = 11;
-- The plan is converted to a map-side plan
EXPLAIN select distinct key from T1_n149;
select distinct key from T1_n149;
-- perform an insert to make sure there are 2 files
INSERT OVERWRITE TABLE T1_n149 PARTITION (ds='2')
SELECT * from src where key = 0 or key = 11;
-- The plan is not converted to a map-side, since although the sorting columns and grouping
-- columns match, the user is querying multiple input partitions
EXPLAIN select distinct key from T1_n149;
select distinct key from T1_n149;
DROP TABLE T1_n149;