pgsql: Remove unused code for unlogged materialized views.

From: Fujii Masao <fujii(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove unused code for unlogged materialized views.
Date: 2024-10-18 08:22:10
Message-ID: E1t1iFO-001LWP-Rc@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove unused code for unlogged materialized views.

Commit 3bf3ab8c56 initially introduced support for unlogged
materialized views, but this was later disallowed by commit 3223b25ff7.
Additionally, commit d25f519107 added more code for handling
unlogged materialized views. This commit cleans up all unused
code related to them.

If unlogged materialized views had been supported in any official
release, psql would need to retain code to handle them for compatibility
with older servers. However, since they were never included in
an official release, this code is no longer necessary.

Author: Pixian Shi
Reviewed-by: Yugo Nagata, Fujii Masao
Discussion: https://postgr.es/m/CAAccyYKRZ=OvAvgowiSH+OELbStLP=p2Ht=R3CgT=OaNSH5DAA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9272bdeac879ae44907422dd545f8d767b39c5ad

Modified Files
--------------
src/backend/access/heap/heapam_handler.c | 1 -
src/bin/psql/describe.c | 8 ++------
2 files changed, 2 insertions(+), 7 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2024-10-18 09:26:06 pgsql: Fix strsep() use for SCRAM secrets parsing
Previous Message Michael Paquier 2024-10-18 04:50:52 pgsql: Fix description of PostgreSQL::Test::Cluster::wait_for_event()