From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | David Fetter <david(at)fetter(dot)org> |
Cc: | PG Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: CTE bug? |
Date: | 2009-10-13 01:48:54 |
Message-ID: | 16703.1255398534@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
David Fetter <david(at)fetter(dot)org> writes:
> WITH RECURSIVE t1(n) AS (
> VALUES(2)
> UNION ALL
> SELECT n+1 FROM t1 WHERE n < 1000
> ),
> t2 (n, i) AS (
> SELECT 2*n+2, 2
> FROM t1 WHERE 2*n+2 <= 1000
> UNION ALL
> WITH t3(k) AS (
> SELECT max(i) FROM t2
> )
> SELECT k*n+k, k
> FROM
> t1
> CROSS JOIN
> t3
> WHERE k*n+k <= 1000
> )
> SELECT * FROM t1 EXCEPT SELECT n FROM t2 ORDER BY 1;
> ERROR: syntax error at or near "WITH t3"
> LINE 10: WITH t3(k) AS (
> ^
I think you need parentheses to have WITH attached to a member of a
UNION. In
WITH (...) SELECT x UNION SELECT y
I'm pretty sure the WITH attaches to the whole union, not the first
member.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Itagaki Takahiro | 2009-10-13 02:39:49 | Skip WAL in ALTER TABLE |
Previous Message | David Fetter | 2009-10-13 01:38:28 | CTE bug? |