Skip to content

Commit 28d0515

Browse files
committed
Fix FSM warning to mention increasing max_fsm_pages. Was incorrectly
max_fsm_relations.
1 parent 26b9dcb commit 28d0515

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/storage/freespace/freespace.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.46 2005/07/04 04:51:48 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.47 2005/08/17 03:50:59 momjian Exp $
1212
*
1313
*
1414
* NOTES:
@@ -736,8 +736,8 @@ CheckFreeSpaceMapStatistics(int elevel, int numRels, double needed)
736736
else if (needed > MaxFSMPages)
737737
ereport(elevel,
738738
(errmsg("the number of page slots needed (%.0f) exceeds max_fsm_pages (%d)",
739-
needed,MaxFSMPages),
740-
errhint("Consider increasing the configuration parameter \"max_fsm_relations\"\n"
739+
needed, MaxFSMPages),
740+
errhint("Consider increasing the configuration parameter \"max_fsm_pages\"\n"
741741
"to a value over %.0f.", needed)));
742742
}
743743

0 commit comments

Comments
 (0)