Saving all output to "!!{outputDirectory}!!/partition_wise_fileformat7.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/partition_wise_fileformat7.q >>> set hive.input.format = org.apache.hadoop.hive.ql.io.CombineHiveInputFormat; No rows affected >>> >>> create table partition_test_partitioned(key string, value string) partitioned by (dt string); No rows affected >>> >>> alter table partition_test_partitioned set fileformat rcfile; No rows affected >>> insert overwrite table partition_test_partitioned partition(dt=101) select * from src1; 'key','value' No rows selected >>> >>> select count(1) from partition_test_partitioned a join partition_test_partitioned b on a.key = b.key where a.dt = '101' and b.dt = '101'; '_c0' '115' 1 row selected >>> >>> select count(1) from partition_test_partitioned a join partition_test_partitioned b on a.key = b.key where a.dt = '101' and b.dt = '101' and a.key < 100; '_c0' '2' 1 row selected >>> !record