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(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
