forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitbe75363
committed
pageinspect: Fix crash with gist_page_items()
Attempting to use this function with a raw page not coming from a GiSTindex would cause a crash, as it was missing the same sanity checks asgist_page_items_bytea(). This slightly refactors the code so as all thebasic validation checks for GiST pages are done in a single routine,in the same fashion as the pageinspect functions for hash and BRIN.This fixes an issue similar to076f4d9. A test is added to stress forthis case. While on it, I have added a similar test forbrin_page_items() with a combination make of a valid GiST index and araw btree page. This one was already protected, but it was not tested.Reported-by: Egor ChindyaskinAuthor: Dmitry KovalDiscussion:https://postgr.es/m/17815-fc4a2d3b74705703@postgresql.orgBackpatch-through: 141 parentd7056bc commitbe75363
File tree
5 files changed
+62
-56
lines changed- contrib/pageinspect
- expected
- sql
5 files changed
+62
-56
lines changedLines changed: 5 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
48 | 48 |
| |
49 | 49 |
| |
50 | 50 |
| |
51 |
| - | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
52 | 54 |
| |
53 | 55 |
| |
54 | 56 |
| |
55 |
| - | |
56 |
| - | |
| 57 | + | |
| 58 | + | |
57 | 59 |
| |
58 | 60 |
| |
59 | 61 |
| |
|
Lines changed: 6 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
64 | 64 |
| |
65 | 65 |
| |
66 | 66 |
| |
67 |
| - | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
68 | 71 |
| |
69 | 72 |
| |
70 | 73 |
| |
| 74 | + | |
| 75 | + | |
71 | 76 |
| |
72 |
| - | |
73 |
| - | |
74 |
| - | |
75 | 77 |
| |
76 | 78 |
| |
77 | 79 |
| |
|
Lines changed: 40 additions & 42 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
32 | 32 |
| |
33 | 33 |
| |
34 | 34 |
| |
35 |
| - | |
36 |
| - | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
37 | 43 |
| |
38 |
| - | |
39 |
| - | |
40 |
| - | |
| 44 | + | |
41 | 45 |
| |
42 |
| - | |
43 |
| - | |
44 |
| - | |
45 |
| - | |
46 |
| - | |
47 |
| - | |
48 |
| - | |
49 |
| - | |
50 |
| - | |
51 |
| - | |
52 |
| - | |
53 |
| - | |
54 |
| - | |
55 | 46 |
| |
56 | 47 |
| |
57 |
| - | |
| 48 | + | |
58 | 49 |
| |
59 | 50 |
| |
60 | 51 |
| |
| |||
74 | 65 |
| |
75 | 66 |
| |
76 | 67 |
| |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
77 | 94 |
| |
78 | 95 |
| |
79 | 96 |
| |
80 | 97 |
| |
81 | 98 |
| |
82 |
| - | |
| 99 | + | |
83 | 100 |
| |
84 | 101 |
| |
85 | 102 |
| |
| |||
101 | 118 |
| |
102 | 119 |
| |
103 | 120 |
| |
104 |
| - | |
| 121 | + | |
105 | 122 |
| |
106 | 123 |
| |
107 | 124 |
| |
| |||
116 | 133 |
| |
117 | 134 |
| |
118 | 135 |
| |
119 |
| - | |
120 | 136 |
| |
121 | 137 |
| |
122 | 138 |
| |
| |||
127 | 143 |
| |
128 | 144 |
| |
129 | 145 |
| |
130 |
| - | |
| 146 | + | |
131 | 147 |
| |
132 | 148 |
| |
133 | 149 |
| |
134 | 150 |
| |
135 |
| - | |
136 |
| - | |
137 |
| - | |
138 |
| - | |
139 |
| - | |
140 |
| - | |
141 |
| - | |
142 |
| - | |
143 |
| - | |
144 |
| - | |
145 |
| - | |
146 |
| - | |
147 |
| - | |
148 |
| - | |
149 |
| - | |
150 |
| - | |
151 |
| - | |
152 |
| - | |
153 | 151 |
| |
154 | 152 |
| |
155 | 153 |
| |
| |||
220 | 218 |
| |
221 | 219 |
| |
222 | 220 |
| |
223 |
| - | |
| 221 | + | |
224 | 222 |
| |
225 | 223 |
| |
226 | 224 |
| |
|
Lines changed: 5 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 |
| - | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
19 | 22 |
| |
20 | 23 |
| |
| 24 | + | |
21 | 25 |
| |
22 |
| - | |
23 |
| - | |
24 | 26 |
| |
25 | 27 |
| |
26 | 28 |
| |
|
Lines changed: 6 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
29 |
| - | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
30 | 34 |
| |
31 | 35 |
| |
| 36 | + | |
32 | 37 |
| |
33 | 38 |
| |
34 |
| - | |
35 |
| - | |
36 |
| - | |
37 | 39 |
| |
38 | 40 |
| |
39 | 41 |
| |
|
0 commit comments
Comments
(0)