Skip to content

ARROW-10289: [Rust] Read dictionaries in IPC streams - #8450

Closed
nevi-me wants to merge 1 commit into
apache:masterfrom
nevi-me:ARROW-10289
Closed

ARROW-10289: [Rust] Read dictionaries in IPC streams#8450
nevi-me wants to merge 1 commit into
apache:masterfrom
nevi-me:ARROW-10289

Conversation

@nevi-me

Copy link
Copy Markdown
Contributor

We were reading dictionaries in the file reader, but not in the stream reader.
This was a trivial change, as we needed to add the dictionary to the stream when we encounter it, and then read the next message until we reach a record batch.

I tested with the 0.14.1 golden file, I'm going to test with later versions (1.0.0-littleendian) when I get to arrow::ipc::MetadataVersion::V5 support, hopefully soon.

@github-actions

Copy link
Copy Markdown

@andygroveandygrove left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't do a full review, but it is clear that this is an improvement over the current situation, so LGTM.

kszucs pushed a commit that referenced this pull request Oct 19, 2020
We were reading dictionaries in the file reader, but not in the stream reader.
This was a trivial change, as we needed to add the dictionary to the stream when we encounter it, and then read the next message until we reach a record batch.
I tested with the 0.14.1 golden file, I'm going to test with later versions (1.0.0-littleendian) when I get to `arrow::ipc::MetadataVersion::V5` support, hopefully soon.
Closes#8450 from nevi-me/ARROW-10289
Authored-by: Neville Dipale <nevilledips@gmail.com>
Signed-off-by: Jorge C. Leitao <jorgecarleitao@gmail.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@nevi-me@andygrove