mirror of
https://github.com/postgres/postgres.git
synced 2025-11-24 00:23:06 +03:00
Fix typos in comments, code and documentation
While on it, newlines are removed from the end of two elog() strings.
The others are simple grammar mistakes. One comment in pg_upgrade
referred incorrectly to sequences since a7e5457.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20221230231257.GI1153@telsasoft.com
Backpatch-through: 11
This commit is contained in:
@@ -78,7 +78,7 @@ mask_unused_space(Page page)
|
||||
if (pd_lower > pd_upper || pd_special < pd_upper ||
|
||||
pd_lower < SizeOfPageHeaderData || pd_special > BLCKSZ)
|
||||
{
|
||||
elog(ERROR, "invalid page pd_lower %u pd_upper %u pd_special %u\n",
|
||||
elog(ERROR, "invalid page pd_lower %u pd_upper %u pd_special %u",
|
||||
pd_lower, pd_upper, pd_special);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user