forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit275a86b
committed
Fix typo in freeze_table_age implementation
The original code used freeze_min_age instead of freeze_table_age. Themain consequence of this mistake is that lowering freeze_min_age wouldcause full-table scans to occur much more frequently, which causesserious issues because the number of writes required is much larger.That feature (freeze_min_age) is supposed to affect only how soon tuplesare frozen; some pages should still be skipped due to the visibilitymap.Backpatch to 8.4, where the freeze_table_age feature was introduced.Report and patch from Andres Freund1 parent7c0e6cc commit275a86b
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
436 | 436 |
| |
437 | 437 |
| |
438 | 438 |
| |
439 |
| - | |
| 439 | + | |
440 | 440 |
| |
441 | 441 |
| |
442 | 442 |
| |
|
0 commit comments
Comments
(0)