Merge pull request #34615 from Algunenano/test_19222

Add test for #19222
This commit is contained in:
Maksim Kita 2022-02-15 20:42:51 +01:00 committed by GitHub
commit 100389b92f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,4 @@
5000
5000
5000
5000

View File

@ -0,0 +1,41 @@
-- https://github.com/ClickHouse/ClickHouse/issues/19222
SET enable_global_with_statement = 1;
WITH t AS
(
SELECT number AS n
FROM numbers(10000)
)
SELECT count(*)
FROM t AS a
WHERE a.n < 5000;
WITH t AS
(
SELECT number AS n
FROM numbers(10000)
)
SELECT count(*)
FROM t AS a
WHERE t.n < 5000;
SET enable_global_with_statement = 0;
WITH t AS
(
SELECT number AS n
FROM numbers(10000)
)
SELECT count(*)
FROM t AS a
WHERE a.n < 5000;
WITH t AS
(
SELECT number AS n
FROM numbers(10000)
)
SELECT count(*)
FROM t AS a
WHERE t.n < 5000;