From 58a36f91b36f30603e5983f19d26c67941cefd3a Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Thu, 9 Aug 2018 16:19:32 -0400 Subject: [PATCH] Add RECURSIVE to documentation index MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 | 4 ++++ doc/src/sgml/ref/create_view.sgml | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/queries.sgml b/doc/src/sgml/queries.sgml index b72be9bf716..88bc1896468 100644 --- a/doc/src/sgml/queries.sgml +++ b/doc/src/sgml/queries.sgml @@ -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 diff --git a/doc/src/sgml/ref/create_view.sgml b/doc/src/sgml/ref/create_view.sgml index b325c1be50f..e7a7e9fae27 100644 --- a/doc/src/sgml/ref/create_view.sgml +++ b/doc/src/sgml/ref/create_view.sgml @@ -82,7 +82,12 @@ CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW - RECURSIVE + RECURSIVE + + RECURSIVE + in views + + Creates a recursive view. The syntax