Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3b0a5e50
Commit
3b0a5e50
authored
Apr 24, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update VACUUM VERBOSE FSM message, per Tom.
parent
35f9b461
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
src/backend/storage/freespace/freespace.c
src/backend/storage/freespace/freespace.c
+8
-9
No files found.
src/backend/storage/freespace/freespace.c
View file @
3b0a5e50
...
...
@@ -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.4
3 2005/04/23 21:16:34
momjian Exp $
* $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.4
4 2005/04/24 03:51:49
momjian Exp $
*
*
* NOTES:
...
...
@@ -709,14 +709,13 @@ PrintFreeSpaceMapStatistics(int elevel)
needed
=
(
sumRequests
+
numRels
)
*
CHUNKPAGES
;
ereport
(
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
\n
"
"%.0f kB memory used"
,
numRels
,
MaxFSMRelations
,
storedPages
,
Min
(
needed
,
MaxFSMPages
),
needed
,
MaxFSMPages
,
(
errmsg
(
"free space map contains %d pages in %d relations"
,
storedPages
,
numRels
),
errdetail
(
"A total of %.0f page slots are in use (including overhead).
\n
"
"%.0f page slots are required to track all free space.
\n
"
"Current limits are: %d page slots, %d relations, using %.0f KB."
,
Min
(
needed
,
MaxFSMPages
),
needed
,
MaxFSMPages
,
MaxFSMRelations
,
(
double
)
FreeSpaceShmemSize
()
/
1024
.
0
)));
CheckFreeSpaceMapStatistics
(
NOTICE
,
numRels
,
needed
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment