pgsql: Support amcheck of sequences

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Support amcheck of sequences
Date: 2021-09-28 13:50:16
Message-ID: E1mVDUu-0004en-EK@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Support amcheck of sequences

Sequences were left out of the list of relation kinds that
verify_heapam knew how to check, though it is fairly trivial to allow
them. Doing that, and while at it, updating pg_amcheck to include
sequences in relations matched by table and relation patterns.

Author: Mark Dilger <mark(dot)dilger(at)enterprisedb(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/81ad4757-92c1-4aa3-7bee-f609544837e3%40enterprisedb.com

Branch
------
master

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

Modified Files
--------------
contrib/amcheck/expected/check_heap.out | 6 ++-
contrib/amcheck/t/001_verify_heapam.pl | 68 ++++++++++++++++++++++++++++++++-
contrib/amcheck/verify_heapam.c | 10 ++++-
doc/src/sgml/amcheck.sgml | 8 ++--
doc/src/sgml/ref/pg_amcheck.sgml | 15 +++++---
src/bin/pg_amcheck/pg_amcheck.c | 6 +--
6 files changed, 95 insertions(+), 18 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Magnus Hagander 2021-09-28 14:25:22 pgsql: Properly schema-prefix reference to pg_catalog.pg_get_statistics
Previous Message Tom Lane 2021-09-27 22:48:39 pgsql: Re-enable contrib/bloom's TAP tests.