-
Notifications
You must be signed in to change notification settings - Fork 3.9k
PARQUET-2179: [C++][Parquet] Add a test for skipping repeated fields #14366
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
values and not records. Add some comments to the existing test to make it more clear.
|
|
|
@emkornfield can you merge this pull request? You already reviewed it, but the pull request was not against the master. This includes some commits that are already checked in. I am not sure how to remove them. You can try looking at the changes from "Merge pull request #1 from fatemehp/skip_test". |
|
@fatemehp it looks like this merged commits from the SkipRecords with the additional tests for Skip method that only skips values, could you remove some of the commits? |
|
This is a test for TypedColumnReader::Skip, and not relevant to the RecordReader. I am trying to keep the changes small and self-contained. |
|
@emkornfield yes, there are some commits here that are not part of this change. I will remove them. |
|
Ok, I think I have fixed this. @emkornfield, could you take a look and merge this change if everything looks good? Thanks! |
pitrou
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.
+1, thank you @fatemehp
|
Let's wait for CI before merging this. |
|
CI failures are unrelated. |
Add a test for
TypedColumnReader::Skipwith repeated values to make it clear that we are skipping values and not records.Also, add some comments to the existing test for Skip of non-repeated values.