You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Eugene Koifman (JIRA)" <ji...@apache.org> on 2016/12/06 20:12:58 UTC

[jira] [Updated] (HIVE-15307) Hive MERGE: "when matched then update" allows invalid column names.

     [ https://issues.apache.org/jira/browse/HIVE-15307?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eugene Koifman updated HIVE-15307:
----------------------------------
    Status: Patch Available  (was: Open)

> Hive MERGE: "when matched then update" allows invalid column names.
> -------------------------------------------------------------------
>
>                 Key: HIVE-15307
>                 URL: https://issues.apache.org/jira/browse/HIVE-15307
>             Project: Hive
>          Issue Type: Sub-task
>          Components: Transactions
>    Affects Versions: 2.2.0
>            Reporter: Eugene Koifman
>            Assignee: Eugene Koifman
>         Attachments: HIVE-15307.01.patch
>
>
> {noformat}
> create table target (
>   id int, val int
> )
> CLUSTERED BY (id) INTO 2 BUCKETS STORED AS ORC TBLPROPERTIES ("transactional"="true");
> create table source2 (
>   id int, val int
> );
> insert into source2 values (2, 25), (3, 35), (4, 45);
> merge into target
> using source2 sub on sub.id = target.id
> when matched then update set invalid = sub.val;
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)