mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Fix free space map to correctly track the total amount of FSM space needed
even when a single relation requires more than max_fsm_pages pages. Also, make VACUUM emit a warning in this case, since it likely means that VACUUM FULL or other drastic corrective measure is needed. Per reports from Jeff Frost and others of unexpected changes in the claimed max_fsm_pages need.
This commit is contained in:
@ -30,7 +30,7 @@ CREATE VIEW pg_freespacemap_relations AS
|
||||
reldatabase oid,
|
||||
relfilenode oid,
|
||||
avgrequest integer,
|
||||
lastpagecount integer,
|
||||
interestingpages integer,
|
||||
storedpages integer,
|
||||
nextpage integer);
|
||||
|
||||
|
Reference in New Issue
Block a user