clintropolis commented on a change in pull request #11004:
URL: https://github.com/apache/druid/pull/11004#discussion_r596308422
##########
File path:
processing/src/main/java/org/apache/druid/segment/data/VSizeLongSerde.java
##########
@@ -330,7 +329,7 @@ public void write(long value) throws IOException
curByte = (byte) value;
first = false;
} else {
- curByte = (byte) ((curByte << 4) | ((value >> (numBytes << 3)) & 0xF));
+ curByte = (byte) ((curByte << 4) | ((value >>> (numBytes << 3)) &
0xF));
Review comment:
oops, this was an accidental change, will revert
----------------------------------------------------------------
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:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]