[ 
https://issues.apache.org/jira/browse/HIVE-9897?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14354546#comment-14354546
 ] 

Raunak Jhawar commented on HIVE-9897:
-------------------------------------

Prefer the cte should be the right way. This is how this issue is handled in 
popular RDBMS's such as MS SQL Server. Thoughts plz.

> Issue a warning when using an existing table/view name as an alias in a with 
> statement. 
> ----------------------------------------------------------------------------------------
>
>                 Key: HIVE-9897
>                 URL: https://issues.apache.org/jira/browse/HIVE-9897
>             Project: Hive
>          Issue Type: Improvement
>          Components: Hive
>    Affects Versions: 0.13.1
>         Environment: cdh5.3.0
>            Reporter: Mario Konschake
>            Priority: Minor
>
> Consider the following query:
> {code:sql}
> WITH
> table_a AS (
>     SELECT
>         'johndoe' AS name
>     FROM
>         my_table
> )
> SELECT
>     DISTINCT name
> FROM
>     table_a;
> {code}
> Observation: 
> If a table or a view with name `table_a` exists it is used instead of the one 
> defined in the WITH statement.
> Expectation:
> As the expectation is ambiguous (using the alias in the WITH statement vs. 
> using the existing table) issuing a warning when using a existing name in a 
> WITH statement is recommended.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to