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

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

Eugene Koifman created HIVE-15307:
-------------------------------------

             Summary: 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


{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)