summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMichael Paquier2024-09-04 04:50:44 +0000
committerMichael Paquier2024-09-04 04:50:44 +0000
commitb4db64270e0c18f72c9c7bf214c809949875a85a (patch)
tree92fa021b8bcfec010c7ddb8347dd907b46545452 /src/include
parent6c2b5edecc0d6c936e27775c9451d32bb3141c90 (diff)
Apply more quoting to GUC names in messages
This is a continuation of 17974ec25946. More quotes are applied to GUC names in error messages and hints, taking care of what seems to be all the remaining holes currently in the tree for the GUCs. Author: Peter Smith Discussion: https://postgr.es/m/CAHut+Pv-kSN8SkxSdoHano_wPubqcg5789ejhCDZAcLFceBR-w@mail.gmail.com
Diffstat (limited to 'src/include')
-rw-r--r--src/include/libpq/libpq-be-fe-helpers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/libpq-be-fe-helpers.h b/src/include/libpq/libpq-be-fe-helpers.h
index fe508292743..46a90dfb022 100644
--- a/src/include/libpq/libpq-be-fe-helpers.h
+++ b/src/include/libpq/libpq-be-fe-helpers.h
@@ -142,13 +142,13 @@ libpqsrv_connect_prepare(void)
(errcode(ERRCODE_SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION),
errmsg("could not establish connection"),
errdetail("There are too many open files on the local server."),
- errhint("Raise the server's max_files_per_process and/or \"ulimit -n\" limits.")));
+ errhint("Raise the server's \"max_files_per_process\" and/or \"ulimit -n\" limits.")));
#else
ereport(ERROR,
(errcode(ERRCODE_SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION),
errmsg("could not establish connection"),
errdetail("There are too many open files on the local server."),
- errhint("Raise the server's max_files_per_process setting.")));
+ errhint("Raise the server's \"max_files_per_process\" setting.")));
#endif
}
}