Add support for deserializing list-encoded JSON structs [#6558] #6643
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.
Which issue does this PR close?
Closes #6558.
Rationale for this change
Currently, a StructArray can only be deserialized from a JSON object (e.g.
{a: 1, b: "c"}
), but some services (e.g. Presto and Trino) encode ROW types as JSON lists (e.g.[1, "c"]
) because this is more compact, and the schema is known.Arrow-json cannot currently deserialize these.
What changes are included in this PR?
This PR adds the ability to parse JSON lists into StructArrays, if the StructParseMode is set to ListOnly. In ListOnly mode, object-encoded structs raise an error. Setting to ObjectOnly (the default) has the original parsing behavior.
Are there any user-facing changes?
Users may set the
StructParsingMode
enum toListOnly
to parse list-style structs. The associated enum,variants, and method have been documented. I'm happy to update any other documentation.
Discussion topics
true
be?), and the other is that it allows a future Mixed mode that could deserialize either. The latter isn't currently requested by anyone.