Description
PostgreSQL supports column aliasing in a CTE so this is valid query:
WITH t(x) AS (SELECT 1) SELECT * FROM t WHERE x = 1
PostgreSQL supports column aliasing in a CTE so this is valid query:
WITH t(x) AS (SELECT 1) SELECT * FROM t WHERE x = 1