[jira] [Work logged] (HIVE-24609) Fix ArrayIndexOutOfBoundsException when execute full outer join

2021-07-02 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-24609:
-

Author: ASF GitHub Bot
Created on: 02/Jul/21 14:41
Start Date: 02/Jul/21 14:41
Worklog Time Spent: 10m 
  Work Description: ashish-kumar-sharma commented on a change in pull 
request #1844:
URL: https://github.com/apache/hive/pull/1844#discussion_r663063144



##
File path: 
ql/src/java/org/apache/hadoop/hive/ql/optimizer/ConvertJoinMapJoin.java
##
@@ -1629,6 +1629,9 @@ private boolean 
checkShuffleSizeForLargeTable(JoinOperator joinOp, int position,
   // Max is disabled, we can safely return false
   return false;
 }
+if(position < 0){

Review comment:
   @lijufeng2016 Please reopen the PR. Also add a UTs and qtest




-- 
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.

To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 618137)
Time Spent: 1h  (was: 50m)

> Fix ArrayIndexOutOfBoundsException when execute full outer join
> ---
>
> Key: HIVE-24609
> URL: https://issues.apache.org/jira/browse/HIVE-24609
> Project: Hive
>  Issue Type: Bug
>  Components: Query Planning
>Affects Versions: 3.1.0
>Reporter: jufeng li
>Assignee: Printer Setup
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> here is my hive-sql:
> {code:java}
> select 
> ..
>  from A 
>  full outer join B on A.id = B.id
> {code}
>  
> It can not be execute,I got an ArrayIndexOutOfBoundsException.Then I debug 
> HiveServer2,found when compile sql in some situation and contains full outer 
> join,there is an ArrayIndexOutOfBoundsException.



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


[jira] [Work logged] (HIVE-24609) Fix ArrayIndexOutOfBoundsException when execute full outer join

2021-03-24 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-24609:
-

Author: ASF GitHub Bot
Created on: 25/Mar/21 05:52
Start Date: 25/Mar/21 05:52
Worklog Time Spent: 10m 
  Work Description: lijufeng2016 commented on pull request #1844:
URL: https://github.com/apache/hive/pull/1844#issuecomment-806383764


   > ### **What changes were proposed in this pull request?**
   > Add a judgement for position.
   > 
   > ### **Why are the changes needed?**
   > To aviod ArrayIndexOutOfBoundsException
   > 
   > ### **Does this PR introduce any user-facing change?**
   > No
   > 
   > ### **How was this patch tested?**
   
   can someone review that?


-- 
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: 571661)
Time Spent: 50m  (was: 40m)

> Fix ArrayIndexOutOfBoundsException when execute full outer join
> ---
>
> Key: HIVE-24609
> URL: https://issues.apache.org/jira/browse/HIVE-24609
> Project: Hive
>  Issue Type: Bug
>  Components: Query Planning
>Affects Versions: 3.1.0
>Reporter: jufeng li
>Assignee: Printer Setup
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> here is my hive-sql:
> {code:java}
> select 
> ..
>  from A 
>  full outer join B on A.id = B.id
> {code}
>  
> It can not be execute,I got an ArrayIndexOutOfBoundsException.Then I debug 
> HiveServer2,found when compile sql in some situation and contains full outer 
> join,there is an ArrayIndexOutOfBoundsException.



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


[jira] [Work logged] (HIVE-24609) Fix ArrayIndexOutOfBoundsException when execute full outer join

2021-03-17 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-24609:
-

Author: ASF GitHub Bot
Created on: 18/Mar/21 00:51
Start Date: 18/Mar/21 00:51
Worklog Time Spent: 10m 
  Work Description: github-actions[bot] closed pull request #1844:
URL: https://github.com/apache/hive/pull/1844


   



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: 568034)
Time Spent: 40m  (was: 0.5h)

> Fix ArrayIndexOutOfBoundsException when execute full outer join
> ---
>
> Key: HIVE-24609
> URL: https://issues.apache.org/jira/browse/HIVE-24609
> Project: Hive
>  Issue Type: Bug
>  Components: Query Planning
>Affects Versions: 3.1.0
>Reporter: jufeng li
>Assignee: jufeng li
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> here is my hive-sql:
> {code:java}
> select 
> ..
>  from A 
>  full outer join B on A.id = B.id
> {code}
>  
> It can not be execute,I got an ArrayIndexOutOfBoundsException.Then I debug 
> HiveServer2,found when compile sql in some situation and contains full outer 
> join,there is an ArrayIndexOutOfBoundsException.



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


[jira] [Work logged] (HIVE-24609) Fix ArrayIndexOutOfBoundsException when execute full outer join

2021-03-10 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-24609:
-

Author: ASF GitHub Bot
Created on: 11/Mar/21 00:50
Start Date: 11/Mar/21 00:50
Worklog Time Spent: 10m 
  Work Description: github-actions[bot] commented on pull request #1844:
URL: https://github.com/apache/hive/pull/1844#issuecomment-796332588


   This pull request has been automatically marked as stale because it has not 
had recent activity. It will be closed if no further activity occurs.
   Feel free to reach out on the d...@hive.apache.org list if the patch is in 
need of reviews.



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: 564189)
Time Spent: 0.5h  (was: 20m)

> Fix ArrayIndexOutOfBoundsException when execute full outer join
> ---
>
> Key: HIVE-24609
> URL: https://issues.apache.org/jira/browse/HIVE-24609
> Project: Hive
>  Issue Type: Bug
>  Components: Query Planning
>Affects Versions: 3.1.0
>Reporter: jufeng li
>Assignee: jufeng li
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> here is my hive-sql:
> {code:java}
> select 
> ..
>  from A 
>  full outer join B on A.id = B.id
> {code}
>  
> It can not be execute,I got an ArrayIndexOutOfBoundsException.Then I debug 
> HiveServer2,found when compile sql in some situation and contains full outer 
> join,there is an ArrayIndexOutOfBoundsException.



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


[jira] [Work logged] (HIVE-24609) Fix ArrayIndexOutOfBoundsException when execute full outer join

2021-01-09 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-24609:
-

Author: ASF GitHub Bot
Created on: 10/Jan/21 04:07
Start Date: 10/Jan/21 04:07
Worklog Time Spent: 10m 
  Work Description: lijufeng2016 opened a new pull request #1844:
URL: https://github.com/apache/hive/pull/1844


   What changes were proposed in this pull request?
   Add a judgement for position.
   
   Why are the changes needed?
   To aviod ArrayIndexOutOfBoundsException
   
   Does this PR introduce any user-facing change?
   No
   
   How was this patch tested?
   It's OK.



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: 533671)
Time Spent: 20m  (was: 10m)

> Fix ArrayIndexOutOfBoundsException when execute full outer join
> ---
>
> Key: HIVE-24609
> URL: https://issues.apache.org/jira/browse/HIVE-24609
> Project: Hive
>  Issue Type: Bug
>  Components: Query Planning
>Affects Versions: 3.1.0
>Reporter: jufeng li
>Assignee: jufeng li
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> here is my hive-sql:
> {code:java}
> select 
> ..
>  from A 
>  full outer join B on A.id = B.id
> {code}
>  
> It can not be execute,I got an ArrayIndexOutOfBoundsException.Then I debug 
> HiveServer2,found when compile sql in some situation and contains full outer 
> join,there is an ArrayIndexOutOfBoundsException.



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


[jira] [Work logged] (HIVE-24609) Fix ArrayIndexOutOfBoundsException when execute full outer join

2021-01-08 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-24609:
-

Author: ASF GitHub Bot
Created on: 09/Jan/21 01:39
Start Date: 09/Jan/21 01:39
Worklog Time Spent: 10m 
  Work Description: lijufeng2016 opened a new pull request #1844:
URL: https://github.com/apache/hive/pull/1844


   What changes were proposed in this pull request?
   Add a judgement for position.
   
   Why are the changes needed?
   To aviod ArrayIndexOutOfBoundsException
   
   Does this PR introduce any user-facing change?
   No
   
   How was this patch tested?
   It's OK.



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: 533313)
Remaining Estimate: 0h
Time Spent: 10m

> Fix ArrayIndexOutOfBoundsException when execute full outer join
> ---
>
> Key: HIVE-24609
> URL: https://issues.apache.org/jira/browse/HIVE-24609
> Project: Hive
>  Issue Type: Bug
>  Components: Query Planning
>Affects Versions: 3.1.0
>Reporter: jufeng li
>Assignee: jufeng li
>Priority: Blocker
> Fix For: 4.0.0
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> here is my hive-sql:
> {code:java}
> select 
> ..
>  from A 
>  full outer join B on A.id = B.id
> {code}
>  
> It can not be execute,I got an ArrayIndexOutOfBoundsException.Then I debug 
> HiveServer2,found when compile sql in some situation and contains full outer 
> join,there is an ArrayIndexOutOfBoundsException.



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