[
https://issues.apache.org/jira/browse/HIVE-20010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16526713#comment-16526713
]
Hive QA commented on HIVE-20010:
--------------------------------
Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12929408/HIVE-20010.01.patch
{color:green}SUCCESS:{color} +1 due to 1 test(s) being added or modified.
{color:green}SUCCESS:{color} +1 due to 14628 tests passed
Test results:
https://builds.apache.org/job/PreCommit-HIVE-Build/12217/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/12217/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-12217/
Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12929408 - PreCommit-HIVE-Build
> 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
> Assignee: Zoltan Haindrich
> Priority: Major
> Attachments: HIVE-20010.01.patch
>
>
> {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)