-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-8225: [Rust] Rust Arrow IPC reader must respect continuation markers. #6724
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
A continuation marker (value of 0xffffffff) in a message size block is used to align the next block to an 8-byte boundary. This value needs to be skipped over if encountered.
paddyhoran
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM pending CI (looks like you have some lints to fix)
|
Saw those; not sure why they came up because I hadn't changed those files, perhaps they were from another merge? Anyways, working to fix! |
|
Yea, it happens. I guess |
|
@paddyhoran All clear! |
|
You've got a conflict from the testing submodule. I'm unable to edit your branch to fix it -- I pushed a fixed branch here https://github.com/wesm/arrow/tree/rust_continuation |
|
Right, sorry, fixed. |
|
+1 |
A continuation marker (value of 0xffffffff) in a message size block is
used to align the next block to an 8-byte boundary. This value needs to
be skipped over if encountered.