Krisztian Kasa created HIVE-25969:
-------------------------------------
Summary: Unable to reference table column named default
Key: HIVE-25969
URL: https://issues.apache.org/jira/browse/HIVE-25969
Project: Hive
Issue Type: Bug
Reporter: Krisztian Kasa
Assignee: Krisztian Kasa
{code}
CREATE TABLE t1 (a int, `default` int) stored as orc TBLPROPERTIES
('transactional'='true');
insert into t1 values (1, 2), (10, 11);
update t1 set a = `default`;
select * from t1;
{code}
result is
{code}
NULL NULL
NULL NULL
{code}
but it should be
{code}
11 11
2 2
{code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)