Zoltan Haindrich created HIVE-20010:
---------------------------------------
Summary: Fix create view over literals
Key: HIVE-20010
URL: https://issues.apache.org/jira/browse/HIVE-20010
Project: Hive
Issue Type: Bug
Reporter: Zoltan Haindrich
{code}
create or replace view v1 as select 1 as q
{code}
results in an error:
{code}
Error: Error while processing statement: FAILED: Execution Error, return code 1
from org.apache.hadoop.hive.ql.exec.DDLTask. Table already exists: default.v1
(state=08S01,code=1)
{code}
however the following works (thank you [~mgergely])
{code}
create or replace view v1 as select 1 as q union all select 1 as qq where false
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)