You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Chaozhong Yang (JIRA)" <ji...@apache.org> on 2017/09/06 04:46:02 UTC

[jira] [Commented] (HIVE-17460) `insert overwrite` should support table schema evolution (e.g. add columns)

    [ https://issues.apache.org/jira/browse/HIVE-17460?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16154804#comment-16154804 ] 

Chaozhong Yang commented on HIVE-17460:
---------------------------------------

[~wzheng] Could you please help me to review this patch?

> `insert overwrite` should support table schema evolution (e.g. add columns)
> ---------------------------------------------------------------------------
>
>                 Key: HIVE-17460
>                 URL: https://issues.apache.org/jira/browse/HIVE-17460
>             Project: Hive
>          Issue Type: Bug
>    Affects Versions: 2.1.0, 2.2.0
>            Reporter: Chaozhong Yang
>            Assignee: Chaozhong Yang
>             Fix For: 3.0.0
>
>         Attachments: HIVE-17460.patch
>
>
> In Hive, adding columns into original table is a common use case. However, If we insert overwrite older partitions after adding columns, added columns will not be accessed.
> ```
> create table src_table(
>         i int
> )
> PARTITIONED BY (`date` string);
> insert overwrite table src_table partition(`date`='20170905') valu
> es (3);
> select * from src_table where `date` = '20170905';
> alter table src_table add columns (bi bigint);
> insert overwrite table src_table partition(`date`='20170905') valu
> es (3, 5);
> select * from src_table where `date` = '20170905';
> ```
> The result will be as follows:
> ```
> 3, NULL, '20170905'
> ```
> Obviously, it doesn't meet our expectation. The expected result should be:
> ```
> 3, 5, '20170905'
> ```



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)