Saving all output to "!!{outputDirectory}!!/partition_wise_fileformat4.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/partition_wise_fileformat4.q >>> create table partition_test_partitioned(key string, value string) partitioned by (dt string); No rows affected >>> alter table partition_test_partitioned set fileformat sequencefile; No rows affected >>> insert overwrite table partition_test_partitioned partition(dt='1') select * from src1; 'key','value' No rows selected >>> alter table partition_test_partitioned partition (dt='1') set fileformat sequencefile; No rows affected >>> >>> alter table partition_test_partitioned add partition (dt='2'); No rows affected >>> alter table partition_test_partitioned drop partition (dt='2'); No rows affected >>> >>> !record