mirror of
https://github.com/postgres/postgres.git
synced 2026-04-28 01:26:56 -04:00
Update VACUUM VERBOSE update, per Alvaro.
This commit is contained in:
parent
9ba6587f8b
commit
714d5a4c37
1 changed files with 3 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
|||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.42 2005/04/23 21:10:20 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.43 2005/04/23 21:16:34 momjian Exp $
|
||||
*
|
||||
*
|
||||
* NOTES:
|
||||
|
|
@ -712,7 +712,8 @@ PrintFreeSpaceMapStatistics(int elevel)
|
|||
(errmsg("free space map contains information about:\n"
|
||||
"%d relations, limit %d relations\n"
|
||||
"%d pages with free space, %.0f total pages used (including overhead)\n"
|
||||
"%.0f pages required to track all freespace, limit %d pages (%.0f kB)",
|
||||
"%.0f pages required to track all freespace, limit %d pages\n"
|
||||
"%.0f kB memory used",
|
||||
numRels, MaxFSMRelations,
|
||||
storedPages, Min(needed, MaxFSMPages),
|
||||
needed, MaxFSMPages,
|
||||
|
|
|
|||
Loading…
Reference in a new issue