mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge f6610790a8
into 44b4bd38b9
This commit is contained in:
commit
7645025359
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -12,7 +12,7 @@ tests/ci/cancel_and_rerun_workflow_lambda/app.py
|
|||||||
- Backward Incompatible Change
|
- Backward Incompatible Change
|
||||||
- Build/Testing/Packaging Improvement
|
- Build/Testing/Packaging Improvement
|
||||||
- Documentation (changelog entry is not required)
|
- Documentation (changelog entry is not required)
|
||||||
- Critical Bug Fix (crash, data loss, RBAC)
|
- Critical Bug Fix (crash, data loss, RBAC) or LOGICAL_ERROR
|
||||||
- Bug Fix (user-visible misbehavior in an official stable release)
|
- Bug Fix (user-visible misbehavior in an official stable release)
|
||||||
- CI Fix or Improvement (changelog entry is not required)
|
- CI Fix or Improvement (changelog entry is not required)
|
||||||
- Not for changelog (changelog entry is not required)
|
- Not for changelog (changelog entry is not required)
|
||||||
|
@ -26,14 +26,6 @@ void UserDefinedSQLFunctionVisitor::visit(ASTPtr & ast)
|
|||||||
{
|
{
|
||||||
chassert(ast);
|
chassert(ast);
|
||||||
|
|
||||||
if (const auto * function = ast->template as<ASTFunction>())
|
|
||||||
{
|
|
||||||
std::unordered_set<std::string> udf_in_replace_process;
|
|
||||||
auto replace_result = tryToReplaceFunction(*function, udf_in_replace_process);
|
|
||||||
if (replace_result)
|
|
||||||
ast = replace_result;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (auto & child : ast->children)
|
for (auto & child : ast->children)
|
||||||
{
|
{
|
||||||
if (!child)
|
if (!child)
|
||||||
@ -48,6 +40,14 @@ void UserDefinedSQLFunctionVisitor::visit(ASTPtr & ast)
|
|||||||
if (new_ptr != old_ptr)
|
if (new_ptr != old_ptr)
|
||||||
ast->updatePointerToChild(old_ptr, new_ptr);
|
ast->updatePointerToChild(old_ptr, new_ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (const auto * function = ast->template as<ASTFunction>())
|
||||||
|
{
|
||||||
|
std::unordered_set<std::string> udf_in_replace_process;
|
||||||
|
auto replace_result = tryToReplaceFunction(*function, udf_in_replace_process);
|
||||||
|
if (replace_result)
|
||||||
|
ast = replace_result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UserDefinedSQLFunctionVisitor::visit(IAST * ast)
|
void UserDefinedSQLFunctionVisitor::visit(IAST * ast)
|
||||||
|
@ -70,7 +70,7 @@ struct JoinedElement
|
|||||||
join->strictness = JoinStrictness::All;
|
join->strictness = JoinStrictness::All;
|
||||||
|
|
||||||
join->on_expression = on_expression;
|
join->on_expression = on_expression;
|
||||||
join->children.push_back(join->on_expression);
|
join->children = {join->on_expression};
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,12 +130,25 @@ void ASTColumnDeclaration::formatImpl(const FormatSettings & format_settings, Fo
|
|||||||
|
|
||||||
void ASTColumnDeclaration::forEachPointerToChild(std::function<void(void **)> f)
|
void ASTColumnDeclaration::forEachPointerToChild(std::function<void(void **)> f)
|
||||||
{
|
{
|
||||||
f(reinterpret_cast<void **>(&default_expression));
|
auto visit_child = [&f](ASTPtr & member)
|
||||||
f(reinterpret_cast<void **>(&comment));
|
{
|
||||||
f(reinterpret_cast<void **>(&codec));
|
IAST * new_member_ptr = member.get();
|
||||||
f(reinterpret_cast<void **>(&statistics_desc));
|
f(reinterpret_cast<void **>(&new_member_ptr));
|
||||||
f(reinterpret_cast<void **>(&ttl));
|
if (new_member_ptr != member.get())
|
||||||
f(reinterpret_cast<void **>(&collation));
|
{
|
||||||
f(reinterpret_cast<void **>(&settings));
|
if (new_member_ptr)
|
||||||
|
member = new_member_ptr->ptr();
|
||||||
|
else
|
||||||
|
member.reset();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
visit_child(default_expression);
|
||||||
|
visit_child(comment);
|
||||||
|
visit_child(codec);
|
||||||
|
visit_child(statistics_desc);
|
||||||
|
visit_child(ttl);
|
||||||
|
visit_child(collation);
|
||||||
|
visit_child(settings);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,6 +61,29 @@ ASTPtr ASTTableJoin::clone() const
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ASTTableJoin::forEachPointerToChild(std::function<void(void **)> f)
|
||||||
|
{
|
||||||
|
IAST * new_using_expression_list = using_expression_list.get();
|
||||||
|
f(reinterpret_cast<void **>(&new_using_expression_list));
|
||||||
|
if (new_using_expression_list != using_expression_list.get())
|
||||||
|
{
|
||||||
|
if (new_using_expression_list)
|
||||||
|
using_expression_list = new_using_expression_list->ptr();
|
||||||
|
else
|
||||||
|
using_expression_list.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
IAST * new_on_expression = on_expression.get();
|
||||||
|
f(reinterpret_cast<void **>(&new_on_expression));
|
||||||
|
if (new_on_expression != on_expression.get())
|
||||||
|
{
|
||||||
|
if (new_on_expression)
|
||||||
|
on_expression = new_on_expression->ptr();
|
||||||
|
else
|
||||||
|
on_expression.reset();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ASTArrayJoin::updateTreeHashImpl(SipHash & hash_state, bool ignore_aliases) const
|
void ASTArrayJoin::updateTreeHashImpl(SipHash & hash_state, bool ignore_aliases) const
|
||||||
{
|
{
|
||||||
hash_state.update(kind);
|
hash_state.update(kind);
|
||||||
|
@ -80,6 +80,9 @@ struct ASTTableJoin : public IAST
|
|||||||
void formatImplAfterTable(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const;
|
void formatImplAfterTable(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const;
|
||||||
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
||||||
void updateTreeHashImpl(SipHash & hash_state, bool ignore_aliases) const override;
|
void updateTreeHashImpl(SipHash & hash_state, bool ignore_aliases) const override;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void forEachPointerToChild(std::function<void(void **)> f) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Specification of ARRAY JOIN.
|
/// Specification of ARRAY JOIN.
|
||||||
|
@ -56,7 +56,9 @@ LABEL_CATEGORIES = {
|
|||||||
"Bug Fix (user-visible misbehaviour in official stable or prestable release)",
|
"Bug Fix (user-visible misbehaviour in official stable or prestable release)",
|
||||||
"Bug Fix (user-visible misbehavior in official stable or prestable release)",
|
"Bug Fix (user-visible misbehavior in official stable or prestable release)",
|
||||||
],
|
],
|
||||||
"pr-critical-bugfix": ["Critical Bug Fix (crash, LOGICAL_ERROR, data loss, RBAC)"],
|
"pr-critical-bugfix": [
|
||||||
|
"Critical Bug Fix (crash, data loss, RBAC) or LOGICAL_ERROR"
|
||||||
|
],
|
||||||
"pr-build": [
|
"pr-build": [
|
||||||
"Build/Testing/Packaging Improvement",
|
"Build/Testing/Packaging Improvement",
|
||||||
"Build Improvement",
|
"Build Improvement",
|
||||||
|
7
tests/queries/0_stateless/03274_udf_in_join.reference
Normal file
7
tests/queries/0_stateless/03274_udf_in_join.reference
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
SELECT 1
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
SELECT 1 AS c0
|
||||||
|
) AS v0
|
||||||
|
ALL INNER JOIN v0 AS vx ON c0 = vx.c0
|
||||||
|
1
|
21
tests/queries/0_stateless/03274_udf_in_join.sh
Executable file
21
tests/queries/0_stateless/03274_udf_in_join.sh
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||||
|
# shellcheck source=../shell_config.sh
|
||||||
|
. "$CUR_DIR"/../shell_config.sh
|
||||||
|
|
||||||
|
$CLICKHOUSE_CLIENT -q "
|
||||||
|
CREATE VIEW v0 AS SELECT 1 AS c0;
|
||||||
|
CREATE FUNCTION ${CLICKHOUSE_DATABASE}_second AS (x, y) -> y;
|
||||||
|
CREATE FUNCTION ${CLICKHOUSE_DATABASE}_equals AS (x, y) -> x = y;
|
||||||
|
-- SET optimize_rewrite_array_exists_to_has = 1;
|
||||||
|
|
||||||
|
EXPLAIN SYNTAX SELECT 1 FROM v0 JOIN v0 vx ON ${CLICKHOUSE_DATABASE}_second(v0.c0, vx.c0); -- { serverError INVALID_JOIN_ON_EXPRESSION }
|
||||||
|
EXPLAIN SYNTAX SELECT 1 FROM v0 JOIN v0 vx ON ${CLICKHOUSE_DATABASE}_equals(v0.c0, vx.c0);
|
||||||
|
|
||||||
|
SELECT 1 FROM v0 JOIN v0 vx ON ${CLICKHOUSE_DATABASE}_equals(v0.c0, vx.c0);
|
||||||
|
|
||||||
|
DROP view v0;
|
||||||
|
DROP FUNCTION ${CLICKHOUSE_DATABASE}_second;
|
||||||
|
DROP FUNCTION ${CLICKHOUSE_DATABASE}_equals;
|
||||||
|
"
|
Loading…
Reference in New Issue
Block a user