[
https://issues.apache.org/jira/browse/HIVE-1707?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12920683#action_12920683
]
Namit Jain commented on HIVE-1707:
----------------------------------
Also, can you make sure that the old location gets deleted ?
(it can be different from the new location).
This can lead to a problem if another table (external) pointed to the old
location,
but I guess we can live with it.
> bug when different partitions are present in different dfs
> ----------------------------------------------------------
>
> Key: HIVE-1707
> URL: https://issues.apache.org/jira/browse/HIVE-1707
> Project: Hadoop Hive
> Issue Type: Bug
> Components: Query Processor
> Reporter: Namit Jain
> Assignee: He Yongqiang
> Fix For: 0.7.0
>
>
> The following does not work:
> create table T -> default location dfs1
> insert overwrite T partition (ds='1') select * from src;
> alter table T location 'dfs2';
> insert overwrite T partition (ds='1') select * from src;
> It tries to insert back in dfs1 - due to which the move task fails.
> It would be cleaner to keep the same semantics as fileformat - whenever a
> partition is being inserted into, it
> inherits the properties from the table. So, after the insert, the partition
> should belong to dfs1.
> It does not matter whether the partition exists before or not,.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.