Fix shared variant column pointers in ColumnVariant::filter#100234
Merged
alexey-milovidov merged 5 commits intomasterfrom Mar 22, 2026
Merged
Fix shared variant column pointers in ColumnVariant::filter#100234alexey-milovidov merged 5 commits intomasterfrom
ColumnVariant::filter#100234alexey-milovidov merged 5 commits intomasterfrom
Conversation
…ulls path and replace unsafe WrappedPtr with MutableColumnPtr in Set::set_elements.
Contributor
alexey-milovidov
approved these changes
Mar 20, 2026
Contributor
AI ReviewSummaryThis PR fixes a real correctness issue in PR Metadata
Findings❌ Blockers
💡 Nits
ClickHouse Rules
Final Verdict
|
The file `04042_hash_join_allocated_size_tracking.sql` had a hidden LEFT-TO-RIGHT MARK character appended to its name, which could cause test discovery tooling to skip it. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Contributor
LLVM Coverage Report
PR changed lines: PR changed-lines coverage: 96.15% (25/26, 1 noise lines excluded) |
robot-ch-test-poll1
added a commit
that referenced
this pull request
Mar 22, 2026
Cherry pick #100234 to 25.3: Fix shared variant column pointers in `ColumnVariant::filter`
This was referenced Mar 22, 2026
Closed
robot-ch-test-poll1
added a commit
that referenced
this pull request
Mar 22, 2026
Cherry pick #100234 to 25.8: Fix shared variant column pointers in `ColumnVariant::filter`
This was referenced Mar 22, 2026
Merged
robot-ch-test-poll1
added a commit
that referenced
this pull request
Mar 22, 2026
Cherry pick #100234 to 25.12: Fix shared variant column pointers in `ColumnVariant::filter`
This was referenced Mar 22, 2026
Closed
robot-ch-test-poll1
added a commit
that referenced
this pull request
Mar 22, 2026
Cherry pick #100234 to 26.1: Fix shared variant column pointers in `ColumnVariant::filter`
This was referenced Mar 22, 2026
Merged
robot-ch-test-poll1
added a commit
that referenced
this pull request
Mar 22, 2026
Cherry pick #100234 to 26.2: Fix shared variant column pointers in `ColumnVariant::filter`
This was referenced Mar 22, 2026
Merged
robot-ch-test-poll1
added a commit
that referenced
this pull request
Mar 22, 2026
Cherry pick #100234 to 26.3: Fix shared variant column pointers in `ColumnVariant::filter`
clickhouse-gh bot
added a commit
that referenced
this pull request
Mar 22, 2026
Backport #100234 to 26.2: Fix shared variant column pointers in `ColumnVariant::filter`
clickhouse-gh bot
added a commit
that referenced
this pull request
Mar 22, 2026
Backport #100234 to 26.1: Fix shared variant column pointers in `ColumnVariant::filter`
alexey-milovidov
added a commit
that referenced
this pull request
Mar 23, 2026
Backport #100234 to 26.3: Fix shared variant column pointers in `ColumnVariant::filter`
nikitamikhaylov
added a commit
that referenced
this pull request
Mar 31, 2026
Backport #100234 to 25.8: Fix shared variant column pointers in `ColumnVariant::filter`
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.
Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes into CHANGELOG.md):
Fixed a
LOGICAL_ERRORexception in queries involvingDynamiccolumns with cross joins and runtime filters, caused byColumnVariant::filtersharing variant column pointers instead of cloning them in thehasOnlyNullsoptimization path. Closes #100147Documentation entry for user-facing changes