feat: implement from_xml Spark function#2098
Draft
anarefolio wants to merge 6 commits into
Draft
Conversation
Gold Data ReportNotes
Commit Information
Summary
DetailsGold Data Metrics
|
Spark 3.5.7 Test ReportCommit Information
Test Summary
Test DetailsError CountsPassed Tests Diff(empty) Failed Tests |
Spark 4.1.1 Test ReportCommit Information
Test Summary
Test DetailsError CountsPassed Tests Diff(empty) Failed Tests(truncated) |
Ibis Test ReportCommit Information
Test Summary
Test DetailsError CountsPassed Tests Diff(empty) Failed Tests |
Codecov Report❌ Patch coverage is @@ Coverage Diff @@
## main #2098 +/- ##
==========================================
- Coverage 77.17% 76.04% -1.14%
==========================================
Files 1004 1005 +1
Lines 162436 163314 +878
==========================================
- Hits 125365 124193 -1172
- Misses 37071 39121 +2050
*This pull request uses carry forward flags. Click here to find out more.
... and 53 files with indirect coverage changes 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements from_xml (XmlToStructs), the inverse of to_xml. Parses an XML string column into a struct value using a user-provided schema.
Ref: Spark docs
Part of #231