Compare commits

...

2 Commits

Author SHA1 Message Date
Raúl Marín
51356a4e56 This test is not fast 2024-11-21 13:18:38 +01:00
Raúl Marín
7baaf24fc3 Enable setting 2024-11-21 12:35:14 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
-- Tags: no-parallel
-- Tags: no-fasttest, no-parallel
-- Tag no-parallel -- due to failpoints
create table data_r1 (key Int, value String) engine=ReplicatedMergeTree('/tables/{database}/data', '{table}') order by tuple();

View File

@ -8,7 +8,7 @@ $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;
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);