Nikita Mikhaylov 2024-04-02 17:26:18 +00:00
parent acf1fb3a6c
commit 9ffe6a4640
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
2
2
2
2

View File

@ -0,0 +1,5 @@
-- https://github.com/ClickHouse/ClickHouse/issues/40955
WITH toInt64(2) AS new_x SELECT new_x AS x FROM (SELECT 1 AS x) t;
WITH toInt64(2) AS new_x SELECT * replace(new_x as x) FROM (SELECT 1 AS x) t;
SELECT 2 AS x FROM (SELECT 1 AS x) t;
SELECT * replace(2 as x) FROM (SELECT 1 AS x) t;