Re: BUG #18246: pgstathashindex() attempts to read invalid file for hash index attached to partitioned table
Alexander Law <exclusion@gmail.com>
From: Alexander Lakhin <exclusion@gmail.com>
To: Michael Paquier <michael@paquier.xyz>, pgsql-bugs@lists.postgresql.org
Date: 2023-12-13T18:00:00Z
Lists: pgsql-bugs
Attachments
- v1-fix-pgstathashindex.patch (text/x-patch) patch v1
Hello Michael, 13.12.2023 17:18, Michael Paquier wrote: > On Wed, Dec 13, 2023 at 09:00:01AM +0000, PG Bug reporting form wrote: >> This anomaly can be observed since 8b08f7d48 from 2018-01-19, but IMO the >> culprit is e759854a0 from 2017-02-03, which introduced the following >> asymmetry in pgstatindex.c: >> if (!IS_INDEX(rel) || !IS_BTREE(rel)) >> if (!IS_INDEX(rel) || !IS_GIN(rel)) >> But: >> if (!IS_HASH(rel)) > Fun, let's fix that. Would you like to write a patch? Yes, please look at the attached, I've decided to change also index_open() -> relation_open() because index_open() only adds a check, that is not suitable for this concrete case, so there is no much sense to use the different function. (In fact, that check was good enough at the time of e759854a0, but 8b08f7d48 changed it.) As a result, error messages for hash indexes are becoming consistent with other indexes. Also I've added a test case for the issue, but maybe it's superfluous... Best regards, Alexander
Commits
-
pageinspect: Fix failure with hash_bitmap_info() for partitioned indexes
- f610d4f119b5 12.18 landed
- 586c6a091f85 13.14 landed
- bfbe4a146e37 14.11 landed
- 2e08440d61ea 15.6 landed
- 7f68b14629c1 16.2 landed
- 208470136421 17.0 landed
-
pgstattuple: Fix failure with pgstathashindex() for partitioned indexes
- bd2d3c92812f 12.18 landed
- b4c1d255c17c 13.14 landed
- f729fdab450f 14.11 landed
- b745f168042e 15.6 landed
- b4948ed66695 16.2 landed
- a8dd62ef4959 17.0 landed
-
Don't try to open visibilitymap when analyzing a foreign table
- 049ef3398d05 17.0 cited