{{ message }}
Fix flattenTuple and tupleToNameValuePairs not propagating NULLs for Nullable(Tuple)#103383
Merged
Merged
Conversation
Contributor
1 task
Avogar
approved these changes
May 12, 2026
Contributor
LLVM Coverage ReportChanged lines: 97.78% (44/45) · Uncovered code |
Merged
via the queue into
ClickHouse:master
with commit May 16, 2026
e5abec9
328 of 330 checks passed
This was referenced May 18, 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 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.

For
tupleToNameValuePairs, old behavior is not completely irrational but I feel the new semantics make more sense.Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes into CHANGELOG.md):
Fix incorrect handling of NULL rows for
Nullable(Tuple(...))inputs inflattenTupleandtupleToNameValuePairs.flattenTuplenow preserves the outer null map so NULL rows stay NULL.tupleToNameValuePairsnow changes the result's value type toNullable(T)when possible when the input isNullable(Tuple(...)), so NULL rows produce[('a', NULL), ('b', NULL)]instead of[('a', 0), ('b', 0)]. When the element type cannot be wrapped inNullable(e.g.Array), default values are used instead of NULL. Closes #103312.Documentation entry for user-facing changes
Version info
26.5.1.702