forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit15d13e8
committed
Make vacuum buffer counters 64 bits wide
Using 32 bit counters means they can now realistically wrap around whenvacuuming extremely large tables. Because they're signed integers,stats printed by vacuum look very odd when they do.We'd love to backpatch this, but refrain because the variables areexported and could cause third-party code to break.Reviewed-by: Julien Rouhaud, Tom Lane, Michael PaquierDiscussion:https://postgr.es/m/20200131205926.GA16367@alvherre.pgsql1 parent75cdf24 commit15d13e8
File tree
3 files changed
+10
-10
lines changed- src
- backend
- access/heap
- utils/init
- include
3 files changed
+10
-10
lines changedLines changed: 4 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
614 | 614 |
| |
615 | 615 |
| |
616 | 616 |
| |
617 |
| - | |
618 |
| - | |
619 |
| - | |
620 |
| - | |
| 617 | + | |
| 618 | + | |
| 619 | + | |
| 620 | + | |
621 | 621 |
| |
622 | 622 |
| |
623 | 623 |
| |
|
Lines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
140 | 140 |
| |
141 | 141 |
| |
142 | 142 |
| |
143 |
| - | |
144 |
| - | |
145 |
| - | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
146 | 146 |
| |
147 | 147 |
| |
148 | 148 |
| |
|
Lines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
252 | 252 |
| |
253 | 253 |
| |
254 | 254 |
| |
255 |
| - | |
256 |
| - | |
257 |
| - | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
258 | 258 |
| |
259 | 259 |
| |
260 | 260 |
| |
|
0 commit comments
Comments
(0)