forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commita8dd62e
committed
pgstattuple: Fix failure with pgstathashindex() for partitioned indexes
As coded, the function relied on index_open() when opening an indexrelation, allowing partitioned indexes to be processed bypgstathashindex(). This was leading to a "could not open file" errorbecause partitioned indexes have no physical files, or to a crash withan assertion failure (like on HEAD).This issue is fixed by applying the same checks as the other statfunctions for indexes, with a lookup at both RELKIND_INDEX and the indexAM expected.Author: Alexander LakhinDiscussion:https://postgr.es/m/18246-f4d9ff7cb3af77e6@postgresql.orgBackpatch-through: 121 parentc8bc807 commita8dd62e
File tree
3 files changed
+11
-7
lines changed- contrib/pgstattuple
- expected
- sql
3 files changed
+11
-7
lines changedLines changed: 7 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
153 | 153 |
| |
154 | 154 |
| |
155 | 155 |
| |
| 156 | + | |
156 | 157 |
| |
157 | 158 |
| |
158 | 159 |
| |
| |||
171 | 172 |
| |
172 | 173 |
| |
173 | 174 |
| |
174 |
| - | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
175 | 178 |
| |
176 | 179 |
| |
177 | 180 |
| |
| |||
188 | 191 |
| |
189 | 192 |
| |
190 | 193 |
| |
191 |
| - | |
| 194 | + | |
192 | 195 |
| |
193 | 196 |
| |
194 | 197 |
| |
| |||
207 | 210 |
| |
208 | 211 |
| |
209 | 212 |
| |
210 |
| - | |
| 213 | + | |
211 | 214 |
| |
212 | 215 |
| |
213 | 216 |
| |
| |||
253 | 256 |
| |
254 | 257 |
| |
255 | 258 |
| |
256 |
| - | |
| 259 | + | |
257 | 260 |
| |
258 | 261 |
| |
259 | 262 |
| |
|
Lines changed: 2 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
600 | 600 |
| |
601 | 601 |
| |
602 | 602 |
| |
603 |
| - | |
| 603 | + | |
604 | 604 |
| |
605 |
| - | |
606 |
| - | |
| 605 | + | |
607 | 606 |
| |
608 | 607 |
| |
609 | 608 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
65 | 65 |
| |
66 | 66 |
| |
67 | 67 |
| |
| 68 | + | |
68 | 69 |
| |
69 | 70 |
| |
70 | 71 |
| |
| |||
73 | 74 |
| |
74 | 75 |
| |
75 | 76 |
| |
| 77 | + | |
76 | 78 |
| |
77 | 79 |
| |
78 | 80 |
| |
|
0 commit comments
Comments
(0)