-
Notifications
You must be signed in to change notification settings - Fork 4k
PARQUET-1689: [C++] Stream API: Allow for columns/rows to be skipped when reading #5797
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
PARQUET-1689: [C++] Stream API: Allow for columns/rows to be skipped when reading #5797
Conversation
6f55838 to
87c11ac
Compare
…eading Add methods to the StreamReader class to allow for columns and rows of data to be skipped. Also add helper methods for finding out: - total number of columns - total number of rows - current row - current column
87c11ac to
5ec4cca
Compare
|
One more small comment on tests, otherwise I think this is reasonable to merge. Also, as a note, it is generally easier to review changes if you don't squash commits on every revision (when merging the merge tool will do this, and it can sometimes be easier to review individual updates). |
emkornfield
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.
Looks reasonable to me.
|
LGTM, @xhochy could you take a look over and see if you can merge it? |
xhochy
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, LGTM
Add methods to the StreamReader class to allow for columns and rows of
data to be skipped.
Also add helper methods for finding out: