pgsql: Add CREATE RECURSIVE VIEW syntax - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Add CREATE RECURSIVE VIEW syntax
Date
Msg-id E1U17NB-0006c6-DX@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Add CREATE RECURSIVE VIEW syntax  (Thom Brown <thom@linux.com>)
List pgsql-committers
Add CREATE RECURSIVE VIEW syntax

This is specified in the SQL standard.  The CREATE RECURSIVE VIEW
specification is transformed into a normal CREATE VIEW statement with a
WITH RECURSIVE clause.

reviewed by Abhijit Menon-Sen and Stephen Frost

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/583905269378bf41c24585773885b1e226a998ce

Modified Files
--------------
doc/src/sgml/ref/create_view.sgml  |   29 ++++++++++++-
src/backend/parser/gram.y          |   85 ++++++++++++++++++++++++++++++++++++
src/test/regress/expected/with.out |   30 +++++++++++++
src/test/regress/sql/with.sql      |   15 ++++++
4 files changed, 158 insertions(+), 1 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: PL/Tcl: Fix compiler warnings with Tcl 8.6
Next
From: Alvaro Herrera
Date:
Subject: pgsql: Fill tuple before HeapSatisfiesHOTAndKeyUpdate