pgsql: Re-allow user_catalog_table option for materialized views.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Re-allow user_catalog_table option for materialized views.
Date: 2016-11-10 20:01:18
Message-ID: E1c4vXC-0002UE-Of@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Re-allow user_catalog_table option for materialized views.

The reloptions stuff allows this option to be set on a matview.
While it's questionable whether that is useful or was really intended,
it does work, and we shouldn't change that in minor releases. Commit
e3e66d8a9 disabled the option since I didn't realize that it was
possible for it to be set on a matview. Tweak the test to re-allow it.

Discussion: <19749(dot)1478711862(at)sss(dot)pgh(dot)pa(dot)us>

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/6e00ba1e17056b86f698e448f900bc35868f5f64

Modified Files
--------------
src/include/utils/rel.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-11-10 21:16:38 pgsql: Cleanup of rewriter and planner handling of Query.hasRowSecurity
Previous Message Tom Lane 2016-11-10 19:13:49 pgsql: Support "COPY view FROM" for views with INSTEAD OF INSERT trigge