mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
This commit is contained in:
parent
6805103ce3
commit
809461ccda
@ -0,0 +1 @@
|
|||||||
|
1 1 1
|
@ -0,0 +1,16 @@
|
|||||||
|
-- https://github.com/ClickHouse/ClickHouse/issues/22627
|
||||||
|
WITH
|
||||||
|
x AS
|
||||||
|
(
|
||||||
|
SELECT 1 AS a
|
||||||
|
),
|
||||||
|
xx AS
|
||||||
|
(
|
||||||
|
SELECT *
|
||||||
|
FROM x
|
||||||
|
, x AS x1
|
||||||
|
, x AS x2
|
||||||
|
)
|
||||||
|
SELECT *
|
||||||
|
FROM xx
|
||||||
|
WHERE a = 1;
|
Loading…
Reference in New Issue
Block a user