mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Fix message style
Mark one message not for translation, and prefer "cannot" over "may not", per commentary from Robert Haas. Discussion: https://postgr.es/m/20190430145813.GA29872@alvherre.pgsql
This commit is contained in:
@ -106,7 +106,8 @@ check_default_table_access_method(char **newval, void **extra, GucSource source)
|
||||
{
|
||||
if (**newval == '\0')
|
||||
{
|
||||
GUC_check_errdetail("default_table_access_method may not be empty.");
|
||||
GUC_check_errdetail("%s cannot be empty.",
|
||||
"default_table_access_method");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user