diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-09-04 13:50:44 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-09-04 13:50:44 +0900 |
commit | b4db64270e0c18f72c9c7bf214c809949875a85a (patch) | |
tree | 92fa021b8bcfec010c7ddb8347dd907b46545452 /src/backend/storage/file/fd.c | |
parent | 6c2b5edecc0d6c936e27775c9451d32bb3141c90 (diff) | |
download | postgresql-b4db64270e0c18f72c9c7bf214c809949875a85a.tar.gz postgresql-b4db64270e0c18f72c9c7bf214c809949875a85a.zip |
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/backend/storage/file/fd.c')
-rw-r--r-- | src/backend/storage/file/fd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index d5204b1eb91..8df0e2f81a4 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -2254,7 +2254,7 @@ FileWriteV(File file, const struct iovec *iov, int iovcnt, off_t offset, if (newTotal > (uint64) temp_file_limit * (uint64) 1024) ereport(ERROR, (errcode(ERRCODE_CONFIGURATION_LIMIT_EXCEEDED), - errmsg("temporary file size exceeds temp_file_limit (%dkB)", + errmsg("temporary file size exceeds \"temp_file_limit\" (%dkB)", temp_file_limit))); } } |