[ 
https://issues.apache.org/jira/browse/HIVE-24087?focusedWorklogId=475870&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-475870
 ]

ASF GitHub Bot logged work on HIVE-24087:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 28/Aug/20 15:39
            Start Date: 28/Aug/20 15:39
    Worklog Time Spent: 10m 
      Work Description: jcamachor commented on pull request #1440:
URL: https://github.com/apache/hive/pull/1440#issuecomment-682729013


   Apart from the tests mentioned above, we should add a test where the 
aggregate contains a SUM to see whether that works correctly too (that's the 
pattern seen in the original query).


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 475870)
    Time Spent: 0.5h  (was: 20m)

> FK side join elimination in presence of PK-FK constraint
> --------------------------------------------------------
>
>                 Key: HIVE-24087
>                 URL: https://issues.apache.org/jira/browse/HIVE-24087
>             Project: Hive
>          Issue Type: Improvement
>          Components: Query Planning
>            Reporter: Vineet Garg
>            Assignee: Vineet Garg
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> If there is PK-FK join FK join could be eliminated by removing FK side if 
> following conditions are met
> * There is no row filtering on FK side.
> * No columns from FK side is required after JOIN.
> * FK join columns are guranteed to be unique (have group by)
> * FK join columns are guranteed to be NOT NULL (either IS NOT NULL filter or 
> constraint)
> *Example*
> {code:sql}
> EXPLAIN 
> SELECT customer_removal_n0.*
> FROM customer_removal_n0
>     JOIN
>     (SELECT lo_custkey
>     FROM lineorder_removal_n0
>     WHERE lo_custkey IS NOT NULL
>     GROUP BY lo_custkey) fkSide ON fkSide.lo_custkey = 
> customer_removal_n0.c_custkey;
> {code}



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

Reply via email to