Doc: clarify use of RECURSIVE in WITH.
authorTom Lane <[email protected]>
Tue, 19 Nov 2019 19:43:37 +0000 (14:43 -0500)
committerTom Lane <[email protected]>
Tue, 19 Nov 2019 19:43:37 +0000 (14:43 -0500)
Apparently some people misinterpreted the syntax as being that
RECURSIVE is a prefix of individual WITH queries.  It's a modifier
for the WITH clause as a whole, so state that more clearly.

Discussion: https://postgr.es/m/ca53c6ce-a0c6-b14a-a8e3-162f0b2cc119@a-kretschmer.de

doc/src/sgml/ref/select.sgml

index a8c41ff09e04dce307546008850f91129838bace..6e2d4e8adc148404b05973ad90454b1e484ff10c 100644 (file)
@@ -271,6 +271,14 @@ TABLE [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ * ]
     reads all or any of their output.
    </para>
 
+   <para>
+    When there are multiple queries in the <literal>WITH</literal>
+    clause, <literal>RECURSIVE</literal> should be written only once,
+    immediately after <literal>WITH</literal>.  It applies to all queries
+    in the <literal>WITH</literal> clause, though it has no effect on
+    queries that do not use recursion or forward references.
+   </para>
+
    <para>
     The primary query and the <literal>WITH</literal> queries are all
     (notionally) executed at the same time.  This implies that the effects of