[branch-4.0](jsonb) add json_object_flatten scalar function (#62825)#63114
Open
csun5285 wants to merge 3 commits into
Open
[branch-4.0](jsonb) add json_object_flatten scalar function (#62825)#63114csun5285 wants to merge 3 commits into
csun5285 wants to merge 3 commits into
Conversation
Introduce `json_object_flatten(JSONB) -> JSONB`. Turn a nested JSONB
object into a single-level JSONB whose keys are the dot-joined paths to
each leaf, mirroring NiFi `FlattenJson` *keep-arrays* semantics:
```
{"a":{"b":2}} -> {"a.b":2}
{"a":{"b":{"c":3}}} -> {"a.b.c":3}
{"a":[{"b":1}]} -> {"a":[{"b":1}]}
```
apache/doris-website#3589
(cherry picked from commit 18fceee)
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
Author
|
run buildall |
Contributor
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
…anch-4.0 variant->jsonb cast
On branch-4.0, the variant->jsonb cast returns NULL for an empty object
and for objects whose leaves are all null ({}, {"a":{}}, {"a":null},
{"a":{"b":null}}), whereas master preserves them as {}. Update rows
k=4..7 of the sql_variant expected output from {} to \N so the suite
matches the actual branch-4.0 behavior. The function itself is correct
and the jsonb-column section is unchanged.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
Author
|
run buildall |
Contributor
Author
|
run buildall |
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.
pick from master #62825