summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-08-24 08:23:43 +0200
committerPeter Eisentraut <peter@eisentraut.org>2023-08-24 08:23:43 +0200
commit8fa09a11c994b85a4f4e6c09c5465f561b17c22b (patch)
tree19b842c0a4a0b06df9127915f362fd94630a95b6
parent7d8e7036177a9fce94a6b99a5a12d65568556fde (diff)
pg_upgrade: Improve one log message
The parenthesized plural is unnecessary here and inconsistent with nearby similar messages.
-rw-r--r--src/bin/pg_upgrade/check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c
index 64024e3b9ec..5de13bdfe07 100644
--- a/src/bin/pg_upgrade/check.c
+++ b/src/bin/pg_upgrade/check.c
@@ -1133,7 +1133,7 @@ check_for_composite_data_type_usage(ClusterInfo *cluster)
if (found)
{
pg_log(PG_REPORT, "fatal");
- pg_fatal("Your installation contains system-defined composite type(s) in user tables.\n"
+ pg_fatal("Your installation contains system-defined composite types in user tables.\n"
"These type OIDs are not stable across PostgreSQL versions,\n"
"so this cluster cannot currently be upgraded. You can\n"
"drop the problem columns and restart the upgrade.\n"