From: Peter Eisentraut Date: Wed, 25 Mar 2009 14:11:48 +0000 (+0000) Subject: Complete list of valid fork names, and use double quotes. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=d651c16a4f01e5979b3f60109c5ac9890fd18c63;p=users%2Fsimon%2Fpostgres.git Complete list of valid fork names, and use double quotes. --- diff --git a/src/backend/catalog/catalog.c b/src/backend/catalog/catalog.c index 59e60932d3..0b8a4fee1d 100644 --- a/src/backend/catalog/catalog.c +++ b/src/backend/catalog/catalog.c @@ -73,7 +73,7 @@ forkname_to_number(char *forkName) ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), errmsg("invalid fork name"), - errhint("Valid fork names are 'main' and 'fsm'"))); + errhint("Valid fork names are \"main\", \"fsm\", and \"vm\"."))); return InvalidForkNumber; /* keep compiler quiet */ }