You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Zoltan Haindrich (Jira)" <ji...@apache.org> on 2021/06/23 13:26:00 UTC

[jira] [Commented] (HIVE-25278) HiveProjectJoinTransposeRule may do invalid transformations with windowing expressions

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

Zoltan Haindrich commented on HIVE-25278:
-----------------------------------------

this is essentally the same thing we already have in Calcite 
https://github.com/apache/calcite/blob/8430023f4616a9b239641b59420f56ecc3fa3e40/core/src/main/java/org/apache/calcite/rel/rules/ProjectJoinTransposeRule.java#L158
but we didn't had this in Hive

> HiveProjectJoinTransposeRule may do invalid transformations with windowing expressions 
> ---------------------------------------------------------------------------------------
>
>                 Key: HIVE-25278
>                 URL: https://issues.apache.org/jira/browse/HIVE-25278
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Zoltan Haindrich
>            Assignee: Zoltan Haindrich
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> running
> {code}
> create table table1 (acct_num string, interest_rate decimal(10,7)) stored as orc;
> create table table2 (act_id string) stored as orc;
> CREATE TABLE temp_output AS
> SELECT act_nbr, row_num
> FROM (SELECT t2.act_id as act_nbr,
> row_number() over (PARTITION BY trim(acct_num) ORDER BY interest_rate DESC) AS row_num
> FROM table1 t1
> INNER JOIN table2 t2
> ON trim(acct_num) = t2.act_id) t
> WHERE t.row_num = 1;
> {code}
> may result in error like:
> {code}
> Error: Error while compiling statement: FAILED: SemanticException Line 0:-1 Invalid column reference 'interest_rate': (possible column names are: interest_rate, trim) (state=42000,code=40000)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)