Github user sumansomasundar commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14762#discussion_r79790670
  
    --- Diff: 
common/unsafe/src/main/java/org/apache/spark/unsafe/array/ByteArrayMethods.java 
---
    @@ -40,24 +41,41 @@ public static int roundNumberOfBytesToNearestWord(int 
numBytes) {
         }
       }
     
    +  private static final boolean alignedArch = 
UnsafeAlignedOffset.getAlignedArch();
       /**
        * Optimized byte array equality check for byte arrays.
        * @return true if the arrays are equal, false otherwise
        */
       public static boolean arrayEquals(
           Object leftBase, long leftOffset, Object rightBase, long 
rightOffset, final long length) {
         int i = 0;
    -    while (i <= length - 8) {
    -      if (Platform.getLong(leftBase, leftOffset + i) !=
    -        Platform.getLong(rightBase, rightOffset + i)) {
    -        return false;
    +
    +    // check if stars align and we can get both offsets to be aligned
    +    if ((leftOffset % 8 != 0) && ((leftOffset % 8) == (rightOffset % 8))) {
    --- End diff --
    
    Changed.



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to