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

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

                Author: ASF GitHub Bot
            Created on: 02/Jun/21 21:46
            Start Date: 02/Jun/21 21:46
    Worklog Time Spent: 10m 
      Work Description: soumyakanti3578 commented on a change in pull request 
#2302:
URL: https://github.com/apache/hive/pull/2302#discussion_r644341873



##########
File path: ql/src/test/queries/clientpositive/subquery_corr_join.q
##########
@@ -0,0 +1,69 @@
+create table alltypestiny(
+id int,
+int_col int,
+bigint_col bigint,
+bool_col boolean
+);
+
+insert into alltypestiny(id, int_col, bigint_col, bool_col) values
+(1, 1, 10, true),
+(2, 4, 5, false),
+(3, 5, 15, true),
+(10, 10, 30, false);
+
+create table alltypesagg(
+id int,
+int_col int,
+bool_col boolean
+);
+
+insert into alltypesagg(id, int_col, bool_col) values
+(1, 1, true),
+(2, 4, false),
+(5, 6, true),
+(null, null, false);
+
+select *
+from alltypesagg t1
+where t1.id not in
+    (select tt1.id
+     from alltypestiny tt1 inner JOIN alltypesagg tt2

Review comment:
       Added `subquery_corr_outer.q` to test LEFT JOIN




-- 
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:
us...@infra.apache.org


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

    Worklog Id:     (was: 605589)
    Time Spent: 40m  (was: 0.5h)

> Parsing error for Correlated Inner Joins
> ----------------------------------------
>
>                 Key: HIVE-25183
>                 URL: https://issues.apache.org/jira/browse/HIVE-25183
>             Project: Hive
>          Issue Type: Sub-task
>          Components: Parser
>            Reporter: Soumyakanti Das
>            Assignee: Soumyakanti Das
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 40m
>  Remaining Estimate: 0h
>
> The issue is similar to HIVE-25090



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

Reply via email to