From: Peter Geoghegan Date: Wed, 8 Aug 2018 19:56:11 +0000 (-0700) Subject: Doc: Correct description of amcheck example query. X-Git-Tag: REL_12_BETA1~1750 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=313cbdc7f666a5af2c977463faf8a0eb06011b98;p=postgresql Doc: Correct description of amcheck example query. The amcheck documentation incorrectly claimed that its example query verifies every catalog index in the database. In fact, the query only verifies the 10 largest indexes (as determined by pg_class.relpages). Adjust the description accordingly. Backpatch: 10-, where contrib/amcheck was introduced. --- diff --git a/doc/src/sgml/amcheck.sgml b/doc/src/sgml/amcheck.sgml index 66a0232e24..8bb60d5c2d 100644 --- a/doc/src/sgml/amcheck.sgml +++ b/doc/src/sgml/amcheck.sgml @@ -35,7 +35,7 @@ functions. - amcheck functions may be used only by superusers. + amcheck functions may only be used by superusers. @@ -83,14 +83,13 @@ ORDER BY c.relpages DESC LIMIT 10; | pg_amop_fam_strat_index | 5 (10 rows) - This example shows a session that performs verification of every - catalog index in the database test. Details of just - the 10 largest indexes verified are displayed. Verification of - the presence of heap tuples as index tuples is requested for - unique indexes only. Since no error is raised, all indexes - tested appear to be logically consistent. Naturally, this query - could easily be changed to call - bt_index_check for every index in the + This example shows a session that performs verification of the + 10 largest catalog indexes in the database test. + Verification of the presence of heap tuples as index tuples is + requested for the subset that are unique indexes. Since no + error is raised, all indexes tested appear to be logically + consistent. Naturally, this query could easily be changed to + call bt_index_check for every index in the database where verification is supported. @@ -292,8 +291,7 @@ ORDER BY c.relpages DESC LIMIT 10; - Corruption caused by faulty RAM, and the broader memory subsystem - and operating system. + Corruption caused by faulty RAM, or the broader memory subsystem. PostgreSQL does not protect against correctable