-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[C++] Small CSV reader refactoring #39962
Comments
pitrou
added a commit
to pitrou/arrow
that referenced
this issue
Feb 6, 2024
pitrou
added a commit
to pitrou/arrow
that referenced
this issue
Feb 7, 2024
pitrou
added a commit
to pitrou/arrow
that referenced
this issue
Feb 8, 2024
pitrou
added a commit
to pitrou/arrow
that referenced
this issue
Feb 8, 2024
pitrou
added a commit
that referenced
this issue
Feb 8, 2024
### What changes are included in this PR? Factor our some shared functionality in the CSV reader to avoid code duplication. ### Are these changes tested? Yes, by existing tests. ### Are there any user-facing changes? No. * Closes: #39962 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
dgreiss
pushed a commit
to dgreiss/arrow
that referenced
this issue
Feb 19, 2024
### What changes are included in this PR? Factor our some shared functionality in the CSV reader to avoid code duplication. ### Are these changes tested? Yes, by existing tests. ### Are there any user-facing changes? No. * Closes: apache#39962 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
zanmato1984
pushed a commit
to zanmato1984/arrow
that referenced
this issue
Feb 28, 2024
### What changes are included in this PR? Factor our some shared functionality in the CSV reader to avoid code duplication. ### Are these changes tested? Yes, by existing tests. ### Are there any user-facing changes? No. * Closes: apache#39962 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
thisisnic
pushed a commit
to thisisnic/arrow
that referenced
this issue
Mar 8, 2024
### What changes are included in this PR? Factor our some shared functionality in the CSV reader to avoid code duplication. ### Are these changes tested? Yes, by existing tests. ### Are there any user-facing changes? No. * Closes: apache#39962 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the enhancement requested
In #39892 I added a TODO noting that
BlockParsingOperator::operator()
was almost the same code asReaderMixin::Parse()
. We should factor out this common functionality to reduce code duplication.Component(s)
C++
The text was updated successfully, but these errors were encountered: