mirror of
https://github.com/postgres/postgres.git
synced 2025-11-10 17:42:29 +03:00
Message corrections
This commit is contained in:
@@ -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.49 2005/10/15 02:49:25 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.50 2005/10/29 00:31:51 petere Exp $
|
||||
*
|
||||
*
|
||||
* NOTES:
|
||||
@@ -726,14 +726,14 @@ CheckFreeSpaceMapStatistics(int elevel, int numRels, double needed)
|
||||
ereport(elevel,
|
||||
(errmsg("max_fsm_relations(%d) equals the number of relations checked",
|
||||
MaxFSMRelations),
|
||||
errhint("You have >= %d relations.\n"
|
||||
errhint("You have at least %d relations. "
|
||||
"Consider increasing the configuration parameter \"max_fsm_relations\".",
|
||||
numRels)));
|
||||
else if (needed > MaxFSMPages)
|
||||
ereport(elevel,
|
||||
(errmsg("the number of page slots needed (%.0f) exceeds max_fsm_pages (%d)",
|
||||
(errmsg("number of page slots needed (%.0f) exceeds max_fsm_pages (%d)",
|
||||
needed, MaxFSMPages),
|
||||
errhint("Consider increasing the configuration parameter \"max_fsm_pages\"\n"
|
||||
errhint("Consider increasing the configuration parameter \"max_fsm_pages\" "
|
||||
"to a value over %.0f.", needed)));
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/storage/lmgr/deadlock.c,v 1.35 2005/10/15 02:49:26 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/storage/lmgr/deadlock.c,v 1.36 2005/10/29 00:31:51 petere Exp $
|
||||
*
|
||||
* Interface:
|
||||
*
|
||||
@@ -888,7 +888,7 @@ DescribeLockTag(StringInfo buf, const LOCKTAG *lock)
|
||||
break;
|
||||
default:
|
||||
appendStringInfo(buf,
|
||||
_("unknown locktag type %d"),
|
||||
_("unrecognized locktag type %d"),
|
||||
lock->locktag_type);
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user