diff options
author | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2024-11-27 19:46:06 +0100 |
---|---|---|
committer | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2024-11-27 19:49:36 +0100 |
commit | 6ba9892f5cb8c2f1c2592198d938cc8f5cf52edc (patch) | |
tree | 62859f3c7c5c7537cc1ecefd008ae56971ffffd3 /src/backend/access/transam/xlogrecovery.c | |
parent | fd9924542bccc488731361861903e3f9f3cf11fa (diff) | |
download | postgresql-6ba9892f5cb8c2f1c2592198d938cc8f5cf52edc.tar.gz postgresql-6ba9892f5cb8c2f1c2592198d938cc8f5cf52edc.zip |
Make GUC_check_errdetail messages full sentences
They were all missing punctuation, one was missing initial capital.
Per our message style guidelines.
No backpatch, to avoid breaking existing translations.
Diffstat (limited to 'src/backend/access/transam/xlogrecovery.c')
-rw-r--r-- | src/backend/access/transam/xlogrecovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogrecovery.c b/src/backend/access/transam/xlogrecovery.c index 05c738d6614..3943c357fa4 100644 --- a/src/backend/access/transam/xlogrecovery.c +++ b/src/backend/access/transam/xlogrecovery.c @@ -4933,7 +4933,7 @@ check_recovery_target_time(char **newval, void **extra, GucSource source) if (tm2timestamp(tm, fsec, &tz, ×tamp) != 0) { - GUC_check_errdetail("timestamp out of range: \"%s\"", str); + GUC_check_errdetail("Timestamp out of range: \"%s\".", str); return false; } } |