-
Notifications
You must be signed in to change notification settings - Fork 915
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
Re-enable JSON tests #8843
Re-enable JSON tests #8843
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-21.10 #8843 +/- ##
================================================
- Coverage 10.67% 10.58% -0.10%
================================================
Files 110 116 +6
Lines 18271 18650 +379
================================================
+ Hits 1951 1974 +23
- Misses 16320 16676 +356
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.
This was my fault. I had those tests commented out so I could run GDB on a single other test and looks like I forgot to uncomment them when I was done.
rerun tests |
@gpucibot merge |
… of `data_type` objects (#8856) Goal of the PR is to enable CSV to read columns as decimal, and to replace the string-based `dtype` part of the API. `data_type` based API is needed because we need to specify scale for decimal columns, and doing this via a string that describes the type is 💩 Changes in the PR: - Added overloads to `dtype` related getters/setters to also take a vector or a map of `data_type` objects. In case of CSV, vector of `data_type`s was already supported. Reworked the implementation to support different use cases that the "dtype-as-string" code path supports. - Fixed naming of compression option setter. - Added `parse_dates` option to make up for the special strings that CSV supported to denote that a column needs to be parsed as hexadecimal (the option to pass strings is to be removed). - Changed naming of `infer_date` option to `parse_dates`. - Updated all CSV and JSON tests to use the new APIs. Breaking because API to specify date columns has been renamed to match the new `parse_hex` API; renamed from `infer_date` to `parse_dates` Depends on #8843 Authors: - Vukasin Milovanovic (https://github.com/vuule) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Ram (Ramakrishna Prabhu) (https://github.com/rgsl888prabhu) - AJ Schmidt (https://github.com/ajschmidt8) - Elias Stehle (https://github.com/elstehle) URL: #8856
#8403 disabled a large portion of JSON tests.
This PR reverts the accidental change in that PR.