[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-16 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 16/Jun/20 13:23
Start Date: 16/Jun/20 13:23
Worklog Time Spent: 10m 
  Work Description: belugabehr merged pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   



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: 446506)
Time Spent: 1h 40m  (was: 1.5h)

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-15 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 15/Jun/20 21:14
Start Date: 15/Jun/20 21:14
Worklog Time Spent: 10m 
  Work Description: miklosgergely commented on a change in pull request 
#1052:
URL: https://github.com/apache/hive/pull/1052#discussion_r440255453



##
File path: common/src/test/org/apache/hadoop/hive/common/TestNumberUtils.java
##
@@ -0,0 +1,50 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.hadoop.hive.common;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+/**
+ * Test suite for the {@link NumberUtils} class.
+ */
+public class TestNumberUtils {
+
+  @Test
+  public void testMinLong() {
+final long pair = NumberUtils.makeIntPair(Integer.MIN_VALUE, 
Integer.MIN_VALUE);
+Assert.assertEquals(Integer.MIN_VALUE, NumberUtils.getFirstInt(pair));
+Assert.assertEquals(Integer.MIN_VALUE, NumberUtils.getSecondInt(pair));
+  }
+
+  @Test
+  public void testMaxLong() {
+final long pair = NumberUtils.makeIntPair(Integer.MAX_VALUE, 
Integer.MAX_VALUE);
+Assert.assertEquals(Integer.MAX_VALUE, NumberUtils.getFirstInt(pair));
+Assert.assertEquals(Integer.MAX_VALUE, NumberUtils.getSecondInt(pair));
+  }
+
+  @Test
+  public void testZeroLong() {
+final long pair = NumberUtils.makeIntPair(0, 0);
+Assert.assertEquals(0, NumberUtils.getFirstInt(pair));
+Assert.assertEquals(0, NumberUtils.getSecondInt(pair));
+  }
+

Review comment:
   Please add some more tests with "everyday" positive and negative 
numbers, the current tests prove only that it works fine fo the extreme values.





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: 446126)
Time Spent: 1.5h  (was: 1h 20m)

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-12 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 12/Jun/20 14:53
Start Date: 12/Jun/20 14:53
Worklog Time Spent: 10m 
  Work Description: belugabehr opened a new pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   



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

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-12 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 12/Jun/20 14:51
Start Date: 12/Jun/20 14:51
Worklog Time Spent: 10m 
  Work Description: belugabehr closed pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   



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: 444935)
Time Spent: 1h 10m  (was: 1h)

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-11 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 11/Jun/20 19:17
Start Date: 11/Jun/20 19:17
Worklog Time Spent: 10m 
  Work Description: belugabehr closed pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   



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

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-11 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 11/Jun/20 19:17
Start Date: 11/Jun/20 19:17
Worklog Time Spent: 10m 
  Work Description: belugabehr opened a new pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   
https://github.com/apache/hive/blob/4ead9d35eadc997b65ceeb64f1fa33c71e47070d/accumulo-handler/pom.xml#L177-L179
   
   I'm not sure why.  It should be `/src/main/java` `/src/test/java` by Maven 
convention.



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: 444512)
Time Spent: 1h  (was: 50m)

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-11 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 11/Jun/20 18:41
Start Date: 11/Jun/20 18:41
Worklog Time Spent: 10m 
  Work Description: belugabehr opened a new pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   



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

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-11 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 11/Jun/20 18:41
Start Date: 11/Jun/20 18:41
Worklog Time Spent: 10m 
  Work Description: belugabehr closed pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   



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

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-02 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 02/Jun/20 16:24
Start Date: 02/Jun/20 16:24
Worklog Time Spent: 10m 
  Work Description: kgyrtkirk commented on pull request #1052:
URL: https://github.com/apache/hive/pull/1052#issuecomment-637662920


   @belugabehr we have a kubernetes scheduler issue inside the testruns (I'm 
working on it) unfortunately your testrun was affected by it; so I've restarted 
it...



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

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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


[jira] [Work logged] (HIVE-23592) Routine "makeIntPair" is Not Correct

2020-06-02 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on HIVE-23592:
-

Author: ASF GitHub Bot
Created on: 02/Jun/20 14:10
Start Date: 02/Jun/20 14:10
Worklog Time Spent: 10m 
  Work Description: belugabehr opened a new pull request #1052:
URL: https://github.com/apache/hive/pull/1052


   



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

> Routine "makeIntPair" is Not Correct
> 
>
> Key: HIVE-23592
> URL: https://issues.apache.org/jira/browse/HIVE-23592
> Project: Hive
>  Issue Type: Bug
>  Components: llap
>Affects Versions: 3.2.0
>Reporter: David Mollitor
>Assignee: David Mollitor
>Priority: Minor
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> {code:java|title=BuddyAllocator.java}
>   // Utility methods used to store pairs of ints as long.
>   private static long makeIntPair(int first, int second) {
> return ((long)first) << 32 | second;
>   }
>   private static int getFirstInt(long result) {
> return (int) (result >>> 32);
>   }
>   private static int getSecondInt(long result) {
> return (int) (result & ((1L << 32) - 1));
>   }
> {code}
> {code:java}
> long result = LLAP.makeIntPair(Integer.MIN_VALUE, Integer.MIN_VALUE);
> if (LLAP.getFirstInt(result) != Integer.MIN_VALUE) {
>throw new Exception();
> }
> if (LLAP.getSecondInt(result) != Integer.MIN_VALUE) {
>   throw new Exception();
>}
> /*
>  * Exception in thread "main" java.lang.Exception
>  *at org.test.TestMe.main(TestMe.java:19)
>  */
> {code}
> [https://github.com/apache/hive/blob/4b670877c280b37c5776046f66d766079489b2a8/llap-server/src/java/org/apache/hadoop/hive/llap/cache/BuddyAllocator.java#L1677]



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