forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit8c3cc86
committed
During WAL recovery, when reading a page that we intend to overwrite completely
from the WAL data, don't bother to physically read it; just have bufmgr.creturn a zeroed-out buffer instead. This speeds recovery significantly,and also avoids unnecessary failures when a page-to-be-overwritten has corruptpage headers on disk. This replaces a former kluge that accomplished thelatter by pretending zero_damaged_pages was always ON during WAL recovery;which was OK when the kluge was put in, but is unsafe when restoring a WALlog that was written with full_page_writes off.Heikki Linnakangas1 parent8ec9438 commit8c3cc86
File tree
3 files changed
+49
-13
lines changed- src
- backend
- access/transam
- storage/buffer
- include/storage
3 files changed
+49
-13
lines changedLines changed: 8 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
14 |
| - | |
| 14 | + | |
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
| |||
206 | 206 |
| |
207 | 207 |
| |
208 | 208 |
| |
209 |
| - | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
210 | 212 |
| |
211 | 213 |
| |
212 | 214 |
| |
| |||
226 | 228 |
| |
227 | 229 |
| |
228 | 230 |
| |
229 |
| - | |
| 231 | + | |
| 232 | + | |
| 233 | + | |
| 234 | + | |
230 | 235 |
| |
231 | 236 |
| |
232 | 237 |
| |
|
Lines changed: 39 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
17 | 17 |
| |
18 | 18 |
| |
19 | 19 |
| |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
20 | 26 |
| |
21 | 27 |
| |
22 | 28 |
| |
| |||
87 | 93 |
| |
88 | 94 |
| |
89 | 95 |
| |
| 96 | + | |
| 97 | + | |
90 | 98 |
| |
91 | 99 |
| |
92 | 100 |
| |
| |||
120 | 128 |
| |
121 | 129 |
| |
122 | 130 |
| |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
123 | 152 |
| |
124 | 153 |
| |
125 | 154 |
| |
| |||
253 | 282 |
| |
254 | 283 |
| |
255 | 284 |
| |
256 |
| - | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
| 288 | + | |
| 289 | + | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
257 | 293 |
| |
258 | 294 |
| |
259 | 295 |
| |
260 |
| - | |
261 |
| - | |
262 |
| - | |
263 |
| - | |
264 |
| - | |
265 |
| - | |
266 |
| - | |
| 296 | + | |
267 | 297 |
| |
268 | 298 |
| |
269 | 299 |
| |
|
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
10 |
| - | |
| 10 | + | |
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| |||
111 | 111 |
| |
112 | 112 |
| |
113 | 113 |
| |
| 114 | + | |
114 | 115 |
| |
115 | 116 |
| |
116 | 117 |
| |
|
0 commit comments
Comments
(0)