forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit2084701
committed
pageinspect: Fix failure with hash_bitmap_info() for partitioned indexes
This function reads directly a page from a relation, relying onindex_open() to open the index to read from. Unfortunately, this wouldcrash when using partitioned indexes, as these can be opened withindex_open() but they have no physical pages.Alexander has fixed the module, while I have written the test.Author: Alexander Lakhin, Michael PaquierDiscussion:https://postgr.es/m/18246-f4d9ff7cb3af77e6@postgresql.orgBackpatch-through: 121 parenta8dd62e commit2084701
3 files changed
+14
-2
lines changedLines changed: 5 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
| 4 | + | |
| 5 | + | |
4 | 6 |
| |
5 | 7 |
| |
6 | 8 |
| |
| |||
44 | 46 |
| |
45 | 47 |
| |
46 | 48 |
| |
| 49 | + | |
| 50 | + | |
47 | 51 |
| |
48 | 52 |
| |
49 | 53 |
| |
| |||
203 | 207 |
| |
204 | 208 |
| |
205 | 209 |
| |
| 210 | + |
Lines changed: 4 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| 15 | + | |
15 | 16 |
| |
16 | 17 |
| |
17 | 18 |
| |
| |||
27 | 28 |
| |
28 | 29 |
| |
29 | 30 |
| |
| 31 | + | |
30 | 32 |
| |
31 | 33 |
| |
32 | 34 |
| |
| |||
413 | 415 |
| |
414 | 416 |
| |
415 | 417 |
| |
416 |
| - | |
| 418 | + | |
417 | 419 |
| |
418 |
| - | |
| 420 | + | |
419 | 421 |
| |
420 | 422 |
| |
421 | 423 |
| |
|
Lines changed: 5 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| 5 | + | |
| 6 | + | |
| 7 | + | |
5 | 8 |
| |
6 | 9 |
| |
7 | 10 |
| |
| |||
21 | 24 |
| |
22 | 25 |
| |
23 | 26 |
| |
| 27 | + | |
24 | 28 |
| |
25 | 29 |
| |
26 | 30 |
| |
| |||
106 | 110 |
| |
107 | 111 |
| |
108 | 112 |
| |
| 113 | + |
0 commit comments
Comments
(0)