Add RECURSIVE to documentation index
authorAlvaro Herrera
Thu, 9 Aug 2018 20:19:32 +0000 (16:19 -0400)
committerAlvaro Herrera
Thu, 9 Aug 2018 20:19:32 +0000 (16:19 -0400)
Author: Daniel Vérité 
Reviewed-by: Fabien COELHO
Discussion: https://postgr.es/m/76d905d7-7eb7-4574-b6ec-a0ca3a1523c0@manitou-mail.org

doc/src/sgml/queries.sgml
doc/src/sgml/ref/create_view.sgml

index b72be9bf716d880953e8a3132bc4f6b684ba1c35..88bc1896468e3e00a3377f0c4833eaf91347ee2e 100644 (file)
@@ -1981,6 +1981,10 @@ GROUP BY region, product;
   
 
   
+   
+    RECURSIVE
+    in common table expressions
+   
    The optional RECURSIVE modifier changes WITH
    from a mere syntactic convenience into a feature that accomplishes
    things not otherwise possible in standard SQL.  Using
index b325c1be50f9026fef17e2bd7da55df0e98a2341..e7a7e9fae273ab53b0325e49c1ac311a6a266fcf 100644 (file)
@@ -82,7 +82,12 @@ CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW 
    
 
    
-    RECURSIVE
+    RECURSIVE
+      
+       RECURSIVE
+       in views
+      
+    
     
      
       Creates a recursive view.  The syntax