mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #71815 from ClickHouse/backport/24.10/71432
Backport #71432 to 24.10: Fix crash with optimize_rewrite_array_exists_to_has
This commit is contained in:
commit
a5b4f8022a
@ -48,9 +48,15 @@ ASTPtr JoinNode::toASTTableJoin() const
|
|||||||
auto join_expression_ast = children[join_expression_child_index]->toAST();
|
auto join_expression_ast = children[join_expression_child_index]->toAST();
|
||||||
|
|
||||||
if (is_using_join_expression)
|
if (is_using_join_expression)
|
||||||
join_ast->using_expression_list = std::move(join_expression_ast);
|
{
|
||||||
|
join_ast->using_expression_list = join_expression_ast;
|
||||||
|
join_ast->children.push_back(join_ast->using_expression_list);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
join_ast->on_expression = std::move(join_expression_ast);
|
{
|
||||||
|
join_ast->on_expression = join_expression_ast;
|
||||||
|
join_ast->children.push_back(join_ast->on_expression);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return join_ast;
|
return join_ast;
|
||||||
|
@ -67,6 +67,18 @@ bool ExecuteScalarSubqueriesMatcher::needChildVisit(ASTPtr & node, const ASTPtr
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (auto * tables = node->as<ASTTablesInSelectQueryElement>())
|
||||||
|
{
|
||||||
|
/// Contrary to what's said in the code block above, ARRAY JOIN needs to resolve the subquery if possible
|
||||||
|
/// and assign an alias for 02367_optimize_trivial_count_with_array_join to pass. Otherwise it will fail in
|
||||||
|
/// ArrayJoinedColumnsVisitor (`No alias for non-trivial value in ARRAY JOIN: _a`)
|
||||||
|
/// This looks 100% as a incomplete code working on top of a bug, but this code has already been made obsolete
|
||||||
|
/// by the new analyzer, so it's an inconvenience we can live with until we deprecate it.
|
||||||
|
if (child == tables->array_join)
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,7 +161,13 @@ void QueryNormalizer::visit(ASTTablesInSelectQueryElement & node, const ASTPtr &
|
|||||||
{
|
{
|
||||||
auto & join = node.table_join->as<ASTTableJoin &>();
|
auto & join = node.table_join->as<ASTTableJoin &>();
|
||||||
if (join.on_expression)
|
if (join.on_expression)
|
||||||
|
{
|
||||||
|
ASTPtr original_on_expression = join.on_expression;
|
||||||
visit(join.on_expression, data);
|
visit(join.on_expression, data);
|
||||||
|
if (join.on_expression != original_on_expression)
|
||||||
|
join.children = { join.on_expression };
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,6 +6,12 @@
|
|||||||
|
|
||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
|
|
||||||
|
namespace ErrorCode
|
||||||
|
{
|
||||||
|
extern const int LOGICAL_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
void RewriteArrayExistsFunctionMatcher::visit(ASTPtr & ast, Data & data)
|
void RewriteArrayExistsFunctionMatcher::visit(ASTPtr & ast, Data & data)
|
||||||
{
|
{
|
||||||
if (auto * func = ast->as<ASTFunction>())
|
if (auto * func = ast->as<ASTFunction>())
|
||||||
@ -20,21 +26,21 @@ void RewriteArrayExistsFunctionMatcher::visit(ASTPtr & ast, Data & data)
|
|||||||
if (join->using_expression_list)
|
if (join->using_expression_list)
|
||||||
{
|
{
|
||||||
auto * it = std::find(join->children.begin(), join->children.end(), join->using_expression_list);
|
auto * it = std::find(join->children.begin(), join->children.end(), join->using_expression_list);
|
||||||
|
if (it == join->children.end())
|
||||||
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "Could not find join->using_expression_list in '{}'", join->formatForLogging());
|
||||||
|
|
||||||
visit(join->using_expression_list, data);
|
visit(join->using_expression_list, data);
|
||||||
|
*it = join->using_expression_list;
|
||||||
if (it && *it != join->using_expression_list)
|
|
||||||
*it = join->using_expression_list;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (join->on_expression)
|
if (join->on_expression)
|
||||||
{
|
{
|
||||||
auto * it = std::find(join->children.begin(), join->children.end(), join->on_expression);
|
auto * it = std::find(join->children.begin(), join->children.end(), join->on_expression);
|
||||||
|
if (it == join->children.end())
|
||||||
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "Could not find join->on_expression in '{}'", join->formatForLogging());
|
||||||
|
|
||||||
visit(join->on_expression, data);
|
visit(join->on_expression, data);
|
||||||
|
*it = join->on_expression;
|
||||||
if (it && *it != join->on_expression)
|
|
||||||
*it = join->on_expression;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -245,6 +245,7 @@ namespace
|
|||||||
table_join->strictness = JoinStrictness::Semi;
|
table_join->strictness = JoinStrictness::Semi;
|
||||||
|
|
||||||
table_join->on_expression = makeASTFunction("equals", makeASTColumn(data_table_id, TimeSeriesColumnNames::ID), makeASTColumn(tags_table_id, TimeSeriesColumnNames::ID));
|
table_join->on_expression = makeASTFunction("equals", makeASTColumn(data_table_id, TimeSeriesColumnNames::ID), makeASTColumn(tags_table_id, TimeSeriesColumnNames::ID));
|
||||||
|
table_join->children.push_back(table_join->on_expression);
|
||||||
table->table_join = table_join;
|
table->table_join = table_join;
|
||||||
|
|
||||||
auto table_exp = std::make_shared<ASTTableExpression>();
|
auto table_exp = std::make_shared<ASTTableExpression>();
|
||||||
|
@ -5,7 +5,8 @@ source /repo/tests/docker_scripts/utils.lib
|
|||||||
|
|
||||||
function attach_gdb_to_clickhouse()
|
function attach_gdb_to_clickhouse()
|
||||||
{
|
{
|
||||||
IS_ASAN=$(clickhouse-client --query "SELECT count() FROM system.build_options WHERE name = 'CXX_FLAGS' AND position('sanitize=address' IN value)")
|
# Use retries to avoid failures due to fault injections
|
||||||
|
IS_ASAN=$(run_with_retry 5 clickhouse-client --query "SELECT count() FROM system.build_options WHERE name = 'CXX_FLAGS' AND position('sanitize=address' IN value)")
|
||||||
if [[ "$IS_ASAN" = "1" ]];
|
if [[ "$IS_ASAN" = "1" ]];
|
||||||
then
|
then
|
||||||
echo "ASAN build detected. Not using gdb since it disables LeakSanitizer detections"
|
echo "ASAN build detected. Not using gdb since it disables LeakSanitizer detections"
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
-- https://github.com/ClickHouse/ClickHouse/issues/71382
|
||||||
|
DROP TABLE IF EXISTS rewrite;
|
||||||
|
CREATE TABLE rewrite (c0 Int) ENGINE = Memory();
|
||||||
|
SELECT 1
|
||||||
|
FROM rewrite
|
||||||
|
INNER JOIN rewrite AS y ON (
|
||||||
|
SELECT 1
|
||||||
|
)
|
||||||
|
INNER JOIN rewrite AS z ON 1
|
||||||
|
SETTINGS optimize_rewrite_array_exists_to_has=1;
|
Loading…
Reference in New Issue
Block a user