Uh oh!
There was an error while loading. Please reload this page.
[branch-4.0](jsonb) add json_object_flatten scalar function (#62825) - #63114
Merged
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)hello-stephen
commented
May 10, 2026
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
csun5285
commented
May 10, 2026
ContributorAuthor
run buildall |
hello-stephen
commented
May 10, 2026
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>csun5285
commented
May 11, 2026
ContributorAuthor
run buildall |
csun5285
commented
May 11, 2026
ContributorAuthor
run buildall |
hello-stephen
commented
May 11, 2026
Contributor
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
morningman
approved these changes
May 28, 2026
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
Uh oh!
There was an error while loading. Please reload this page.
morningman
approved these changes
May 28, 2026
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 freeto 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