-
Notifications
You must be signed in to change notification settings - Fork 902
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
Support multiple input files/buffers for read_json #8403
Conversation
I do not have permissions to edit labels. I would greatly appreciate it if someone could add them for me. Thanks! |
rerun tests |
… reading from multiple input files
…electing compression type
Codecov Report
@@ Coverage Diff @@
## branch-21.08 #8403 +/- ##
================================================
+ Coverage 82.57% 82.59% +0.01%
================================================
Files 109 109
Lines 17870 17858 -12
================================================
- Hits 14757 14750 -7
+ Misses 3113 3108 -5
Continue to review full report at Codecov.
|
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.
Can we add python tests also for reading multiple files/buffers?
rerun tests |
rerun tests |
…en an unknown file protocol is encountered
@gpucibot merge |
#8403 disabled a large portion of JSON tests. This PR reverts the accidental change in that PR. Authors: - Vukasin Milovanovic (https://github.com/vuule) Approvers: - Mike Wilson (https://github.com/hyperbolic2346) - Jeremy Dyer (https://github.com/jdye64) - Christopher Harris (https://github.com/cwharris) - Mark Harris (https://github.com/harrism) URL: #8843
Adds the support for multiple input files/buffers for read_json() so that users can specify multiple files/buffers to generate a single dataframe ("partition") as the result of read_json.
This closes #8320