[ https://issues.apache.org/jira/browse/HIVE-1442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
He Yongqiang updated HIVE-1442: ------------------------------- Assignee: (was: He Yongqiang) > HOLD_DDLTIME does not change partition metadata > ----------------------------------------------- > > Key: HIVE-1442 > URL: https://issues.apache.org/jira/browse/HIVE-1442 > Project: Hive > Issue Type: Bug > Components: Query Processor > Affects Versions: 0.7.0 > Reporter: Namit Jain > > create table T1 (key string, value string) partitioned by(ds string) stored > as sequencefile; > desc extended T1; > insert overwrite table T1 partition (ds='1') select key, value from src; > insert overwrite table T1 partition (ds='2') select key, value from src; > desc extended T1 partition (ds='1'); > desc extended T1 partition (ds='2'); > alter table T1 set fileformat rcfile; > insert overwrite table T1 partition (ds='1') > select /*+ HOLD_DDLTIME*/ key, value from src; > insert overwrite table T1 partition (ds='2') > select key, value from src; > desc extended T1 partition (ds='1'); > desc extended T1 partition (ds='2'); > drop table T1; > T1/ds=1 is left as sequencefile and corrupted after the insert as HOLD_DDLTIME -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira