anishek created HIVE-16842: ------------------------------ Summary: insert overwrite with select fails Key: HIVE-16842 URL: https://issues.apache.org/jira/browse/HIVE-16842 Project: Hive Issue Type: Bug Components: HiveServer2 Affects Versions: 3.0.0 Reporter: anishek Fix For: 3.0.0
{code}create table address (city string); insert into address values ('b'); create table empty_insert (city string); insert into empty_insert values ('a'); insert overwrite table empty_insert select city from address where city='g'; {code} empty_insert still contains 'a'; # should be nothing -- This message was sent by Atlassian JIRA (v6.3.15#6346)