jihaitangguo commented on PR #4676: URL: https://github.com/apache/iotdb/pull/4676#issuecomment-2564305349
Note: There was a bug in the code submitted here, [IOTDB-4633](https://issues.apache.org/jira/browse/IOTDB-4633), which has been fixed in #7669, where ``` byte y = (byte) (srcNum >> width); ``` has been corrected to ``` byte y = (byte) (srcNum >>> width); ``` -- 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]
