Saving all output to "!!{outputDirectory}!!/partition_wise_fileformat5.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/partition_wise_fileformat5.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 >>> alter table partition_test_partitioned set fileformat Sequencefile; No rows affected >>> insert overwrite table partition_test_partitioned partition(dt=102) select * from src1; 'key','value' No rows selected >>> >>> select dt, count(1) from partition_test_partitioned where dt is not null group by dt; 'dt','_c1' '101','25' '102','25' 2 rows selected >>> >>> insert overwrite table partition_test_partitioned partition(dt=103) select * from src1; 'key','value' No rows selected >>> >>> select dt, count(1) from partition_test_partitioned where dt is not null group by dt; 'dt','_c1' '101','25' '102','25' '103','25' 3 rows selected >>> !record