Set max_analyze_depth in 02337_join_analyze_stuck

This commit is contained in:
Vladimir C 2022-09-13 10:27:22 +02:00 committed by GitHub
parent ba506043ce
commit 97723fb312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,18 @@
-- https://github.com/ClickHouse/ClickHouse/issues/21557
EXPLAIN SYNTAX
WITH
x AS ( SELECT number FROM numbers(10) ),
cross_sales AS (
SELECT 1 AS xx
FROM x, x AS d1, x AS d2, x AS d3, x AS d4, x AS d5, x AS d6, x AS d7, x AS d8, x AS d9
WHERE x.number = d9.number
)
SELECT xx FROM cross_sales WHERE xx = 2000 FORMAT Null;
SET max_analyze_depth = 1;
EXPLAIN SYNTAX
WITH
x AS ( SELECT number FROM numbers(10) ),