pgsql: Reintroduce support for sequences in pgstattuple and pageinspect

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Reintroduce support for sequences in pgstattuple and pageinspect
Date: 2024-09-12 21:33:27
Message-ID: E1sorRP-000o5v-BQ@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Reintroduce support for sequences in pgstattuple and pageinspect.

Commit 4b82664156 restricted a number of functions provided by
contrib modules to only relations that use the "heap" table access
method. Sequences always use this table access method, but they do
not advertise as such in the pg_class system catalog, so the
aforementioned commit also (presumably unintentionally) removed
support for sequences from some of these functions. This commit
reintroduces said support for sequences to these functions and adds
a couple of relevant tests.

Co-authored-by: Ayush Vatsa
Reviewed-by: Robert Haas, Michael Paquier, Matthias van de Meent
Discussion: https://postgr.es/m/CACX%2BKaP3i%2Bi9tdPLjF5JCHVv93xobEdcd_eB%2B638VDvZ3i%3DcQA%40mail.gmail.com
Backpatch-through: 12

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/ca902529cc0fea8a0ef660b519640da09a2680ef

Modified Files
--------------
contrib/pageinspect/expected/page.out | 9 +++++++++
contrib/pageinspect/heapfuncs.c | 6 +++++-
contrib/pageinspect/sql/page.sql | 5 +++++
contrib/pgstattuple/expected/pgstattuple.out | 24 ++++++++++++++++++++++++
contrib/pgstattuple/pgstattuple.c | 6 +++++-
contrib/pgstattuple/sql/pgstattuple.sql | 12 ++++++++++++
6 files changed, 60 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2024-09-13 00:42:22 pgsql: pg_stat_statements: Add tests with extended query protocol
Previous Message Jeff Davis 2024-09-12 21:03:54 pgsql: Remove redundant check for default collation.