ClickHouse/tests/queries/0_stateless/03051_many_ctes.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
314 B
MySQL
Raw Normal View History

-- https://github.com/ClickHouse/ClickHouse/issues/40955
2024-07-12 12:49:26 +00:00
SET enable_analyzer=1;
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;