Uh oh!
There was an error while loading. Please reload this page.
ARROW-10656: [Rust] Allow schema validation to ignore field names and only check data types on new batch - #8988
ARROW-10656: [Rust] Allow schema validation to ignore field names and only check data types on new batch#8988nevi-me wants to merge 1 commit into
Conversation
nevi-me
commented
Dec 22, 2020
Hi @ch-sc , please have a look at the approach that I've taken, and let me know if it meets your use-case. If you're happy with the PR, I can then document the new functions, and add unit tests, then get it reviewed. Thanks |
Codecov Report
@@ Coverage Diff @@## master #8988 +/- ##
==========================================
- Coverage 82.61% 82.56% -0.06%
==========================================
Files 202 202 Lines 50048 50087 +39 ==========================================
+ Hits 41347 41353 +6 - Misses 8701 8734 +33
Continue to review full report at Codecov.
|
ch-sc
commented
Dec 27, 2020
Looks good to me @nevi-me. Thank you! |
alamb
commented
Dec 31, 2020
The full set of Rust CI tests did not run on this PR :( Can you please rebase this PR against apache/master to pick up the changes in #9056 so that they do? I apologize for the inconvenience. |
nevi-me
commented
Jan 1, 2021
Done rebasing @alamb |
| Ok(RecordBatch { schema, columns }) | ||
| } | ||
| pub fn try_new_with_options( |
There was a problem hiding this comment.
@alamb@jorgecarleitao I must have done something wrong on the rebase, I had added doc comments for this function, and added tests :(
This adds the option to create a new record batch with less strict validation for list field names.
The default behaviour is preserved.