Add changelog for embedding views recursively

This commit is contained in:
Laurence Isla
2021-07-25 14:49:42 -05:00
committed by Steve Chavez
parent 2e50a22e64
commit 6909e3435e
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -695,8 +695,6 @@ It's also possible to embed `Materialized Views <https://www.postgresql.org/docs
If view definitions change you must refresh PostgREST's schema cache for this to work properly. See the section :ref:`schema_reloading`.
.. _s_proc_embed:
.. _embedding_view_chains:
Embedding Chains of Views
@@ -704,6 +702,8 @@ Embedding Chains of Views
Views can also depend on other views, which in turn depend on the actual source table. For PostgREST to pick up those chains recursively to any depth, all the views must be in the search path, so either in the exposed schema (:ref:`db-schema`) or in one of the schemas set in :ref:`db-extra-search-path`. This does not apply to the source table, which could be in a private schema as well. See :ref:`schema_isolation` for more details.
.. _s_proc_embed:
Embedding on Stored Procedures
------------------------------
+3
View File
@@ -16,6 +16,9 @@ Added
* Allow :ref:`s_procs_variadic`.
|br| -- `@wolfgangwalther <https://github.com/wolfgangwalther>`_
* Allow :ref:`embedding_view_chains` recursively to any depth.
|br| -- `@wolfgangwalther <https://github.com/wolfgangwalther>`_
* Allow schema cache reloading using PostgreSQL :ref:`NOTIFY <schema_reloading_notify>` command.
|br| -- `@steve-chavez <https://github.com/steve-chavez>`_