forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitf610d4f
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 parentbd2d3c9 commitf610d4f
3 files changed
+14
-2
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
| 4 | + | |
| 5 | + | |
4 | 6 |
| |
5 | 7 |
| |
6 | 8 |
| |
| |||
40 | 42 |
| |
41 | 43 |
| |
42 | 44 |
| |
| 45 | + | |
| 46 | + | |
43 | 47 |
| |
44 | 48 |
| |
45 | 49 |
| |
| |||
199 | 203 |
| |
200 | 204 |
| |
201 | 205 |
| |
| 206 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
| 17 | + | |
17 | 18 |
| |
18 | 19 |
| |
19 | 20 |
| |
| |||
27 | 28 |
| |
28 | 29 |
| |
29 | 30 |
| |
| 31 | + | |
30 | 32 |
| |
31 | 33 |
| |
32 | 34 |
| |
| |||
420 | 422 |
| |
421 | 423 |
| |
422 | 424 |
| |
423 |
| - | |
| 425 | + | |
424 | 426 |
| |
425 |
| - | |
| 427 | + | |
426 | 428 |
| |
427 | 429 |
| |
428 | 430 |
| |
|
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 |
| |
| |||
19 | 22 |
| |
20 | 23 |
| |
21 | 24 |
| |
| 25 | + | |
22 | 26 |
| |
23 | 27 |
| |
24 | 28 |
| |
| |||
104 | 108 |
| |
105 | 109 |
| |
106 | 110 |
| |
| 111 | + |
0 commit comments
Comments
(0)