forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit3c6e719
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 parent1d857a6 commit3c6e719
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
434 | 434 |
| |
435 | 435 |
| |
436 | 436 |
| |
437 |
| - | |
| 437 | + | |
438 | 438 |
| |
439 | 439 |
| |
440 | 440 |
| |
|
0 commit comments
Comments
(0)