From: Michael Paquier Date: Tue, 25 Feb 2025 06:53:32 +0000 (+0900) Subject: Fix untranslatable string concatenation in pg_upgrade X-Git-Tag: REL_18_BETA1~761 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=560a842d639f28497ab6df08ac0305240be79803;p=thirdparty%2Fpostgresql.git Fix untranslatable string concatenation in pg_upgrade Oversight in 1aab6805919b. Author: Kyotaro Horiguchi Discussion: https://postgr.es/m/20250225.140953.1271748916018759840.horikyota.ntt@gmail.com --- diff --git a/src/bin/pg_upgrade/option.c b/src/bin/pg_upgrade/option.c index fe716c4c805..188dd8d8a8b 100644 --- a/src/bin/pg_upgrade/option.c +++ b/src/bin/pg_upgrade/option.c @@ -323,8 +323,8 @@ usage(void) printf(_(" --copy copy files to new cluster (default)\n")); printf(_(" --copy-file-range copy files to new cluster with copy_file_range\n")); printf(_(" --no-statistics do not import statistics from old cluster\n")); - printf(_(" --set-char-signedness=OPTION set new cluster char signedness to \"signed\" or\n")); - printf(_(" \"unsigned\"\n")); + printf(_(" --set-char-signedness=OPTION set new cluster char signedness to \"signed\" or\n" + " \"unsigned\"\n")); printf(_(" --sync-method=METHOD set method for syncing files to disk\n")); printf(_(" -?, --help show this help, then exit\n")); printf(_("\n"