nastra opened a new pull request, #5200:
URL: https://github.com/apache/iceberg/pull/5200

   The only warning that is left is this one from 
https://github.com/apache/iceberg/blob/2f8a09a8f81b27b8ba4025efaa328244ae0fc2a6/core/src/main/java/org/apache/iceberg/util/ZOrderByteUtils.java#L182-L183
   which seems legit as we're doing a lossy cast that would fail compilation if 
I rewrite it (https://errorprone.info/bugpattern/NarrowingCompoundAssignment):
   
   ```
   > Task :iceberg-core:compileJava
   
/home/nastra/Development/workspace/iceberg/core/src/main/java/org/apache/iceberg/util/ZOrderByteUtils.java:182:
 warning: [NarrowingCompoundAssignment] Compound assignments from int to byte 
hide lossy casts
         interleavedBytes[interleaveByte] |=
                                          ^
       (see https://errorprone.info/bugpattern/NarrowingCompoundAssignment)
     Did you mean 'interleavedBytes[interleaveByte] = (byte) 
(interleavedBytes[interleaveByte] | (columnsBinary[sourceColumn][sourceByte] & 
1 << sourceBit) >>> sourceBit << interleaveBit);'?
   ```


-- 
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: [email protected]

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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to