rdblue commented on code in PR #6532:
URL: https://github.com/apache/iceberg/pull/6532#discussion_r1064187585
##########
python/tests/avro/test_decoder.py:
##########
@@ -109,7 +109,7 @@ class OneByteAtATimeInputStream(InputStream):
def read(self, size: int = 0) -> bytes:
self.pos += 1
- return int.to_bytes(1, self.pos, byteorder="little")
+ return self.pos.to_bytes(1, byteorder="little")
Review Comment:
Why was this needed?
--
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]