Fix logical error with empty tuple inside IN function#89850
Merged
nihalzp merged 8 commits intoClickHouse:masterfrom Nov 12, 2025
Merged
Fix logical error with empty tuple inside IN function#89850nihalzp merged 8 commits intoClickHouse:masterfrom
nihalzp merged 8 commits intoClickHouse:masterfrom
Conversation
(cherry picked from commit 488a9b4)
Contributor
|
Workflow [PR], commit [d397766] Summary: ❌
|
Member
Author
|
@Avogar The AST fuzzer (arm_asan) error is unrelated. It can be reproduced on master. #89691 SET allow_experimental_full_text_index=1, receive_timeout = 10., receive_data_timeout_ms = 10000, allow_suspicious_low_cardinality_types = true, optimize_skip_unused_shards = true, force_optimize_skip_unused_shards = 2, use_skip_indexes_on_data_read = true, log_queries = true, table_function_remote_max_addresses = 200, max_execution_time = 10., max_memory_usage = 10000000000, send_logs_level = 'fatal', allow_introspection_functions = true, allow_experimental_nlp_functions = true, allow_experimental_full_text_index = true;
CREATE TABLE tab (`id` UInt64, `text` String, INDEX inv_idx text TYPE text(tokenizer = 'splitByNonAlpha') GRANULARITY 4) ENGINE = MergeTree ORDER BY id SETTINGS index_granularity = 32, index_granularity_bytes = 0, min_bytes_for_wide_part = 0;
INSERT INTO tab FORMAT Values (0,'a'),(1,'b'),(2,'c');
SELECT id FROM tab PREWHERE hasToken(text, 'b'); |
Avogar
approved these changes
Nov 11, 2025
Member
Author
|
Integration tests (amd_tsan, 1/6) |
Merged
via the queue into
ClickHouse:master
with commit Nov 12, 2025
5c7b1ad
126 of 130 checks passed
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
Cherry pick #89850 to 25.3: Fix logical error with empty tuple inside IN function
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
This was referenced Nov 12, 2025
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
Cherry pick #89850 to 25.8: Fix logical error with empty tuple inside IN function
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
Cherry pick #89850 to 25.9: Fix logical error with empty tuple inside IN function
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
This was referenced Nov 12, 2025
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
Cherry pick #89850 to 25.10: Fix logical error with empty tuple inside IN function
robot-clickhouse
added a commit
that referenced
this pull request
Nov 12, 2025
clickhouse-gh bot
added a commit
that referenced
this pull request
Nov 12, 2025
Backport #89850 to 25.10: Fix logical error with empty tuple inside IN function
clickhouse-gh bot
added a commit
that referenced
this pull request
Nov 20, 2025
Backport #89850 to 25.9: Fix logical error with empty tuple inside IN function
clickhouse-gh bot
added a commit
that referenced
this pull request
Nov 20, 2025
Backport #89850 to 25.8: Fix logical error with empty tuple inside IN function
nihalzp
added a commit
that referenced
this pull request
Nov 20, 2025
Backport #89850 to 25.3: Fix logical error with empty tuple inside IN function
1 task
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):
Fix logical error with empty tuple inside
INfunction. Closes #88343.Documentation entry for user-facing changes
Details
Fix
SELECT tuple() IN tuple();logical error, STD_EXCEPTION.