Skip to content

Commit a5db274

Browse files
committed
Add RECURSIVE to documentation index
Author: Daniel Vérité <daniel@manitou-mail.org> Reviewed-by: Fabien COELHO <coelho@cri.ensmp.fr> Discussion: https://postgr.es/m/76d905d7-7eb7-4574-b6ec-a0ca3a1523c0@manitou-mail.org
1 parent 8694a1c commit a5db274

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

doc/src/sgml/queries.sgml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1981,6 +1981,10 @@ GROUP BY region, product;
19811981
</para>
19821982

19831983
<para>
1984+
<indexterm>
1985+
<primary>RECURSIVE</primary>
1986+
<secondary>in common table expressions</secondary>
1987+
</indexterm>
19841988
The optional <literal>RECURSIVE</literal> modifier changes <literal>WITH</literal>
19851989
from a mere syntactic convenience into a feature that accomplishes
19861990
things not otherwise possible in standard SQL. Using

doc/src/sgml/ref/create_view.sgml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,12 @@ CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW <replaceable class
8282
</varlistentry>
8383

8484
<varlistentry>
85-
<term><literal>RECURSIVE</literal></term>
85+
<term><literal>RECURSIVE</literal>
86+
<indexterm zone="sql-createview">
87+
<primary>RECURSIVE</primary>
88+
<secondary>in views</secondary>
89+
</indexterm>
90+
</term>
8691
<listitem>
8792
<para>
8893
Creates a recursive view. The syntax

0 commit comments

Comments
 (0)