EmilyMatt commented on code in PR #9397:
URL: https://github.com/apache/arrow-rs/pull/9397#discussion_r2811984894
##########
arrow-avro/src/reader/cursor.rs:
##########
@@ -59,12 +59,19 @@ impl<'a> AvroCursor<'a> {
}
pub(crate) fn read_vlq(&mut self) -> Result<u64, AvroError> {
- let (val, offset) =
- read_varint(self.buf).ok_or_else(|| AvroError::ParseError("bad
varint".to_string()))?;
Review Comment:
I meant the other way around, having everything vlq::read_varint and
vlq::skip_varint, but I missed your comment^^
--
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]