summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2022-07-18 12:53:00 +0000
committerPeter Eisentraut2022-07-18 12:53:00 +0000
commit973137de0819793a82fc6dc91bddb78750380917 (patch)
treeb703e68a32165c9780f1c79ba635ec165fa25e24
parent976b06c6630cbf09bf933a006b5e662753e7c0be (diff)
pg_upgrade: Adjust quoting style in message to match guidelines
-rw-r--r--src/bin/pg_upgrade/check.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c
index 01ede1e4ad..0ed0590d82 100644
--- a/src/bin/pg_upgrade/check.c
+++ b/src/bin/pg_upgrade/check.c
@@ -1124,10 +1124,10 @@ check_for_incompatible_polymorphics(ClusterInfo *cluster)
fclose(script);
pg_log(PG_REPORT, "fatal");
pg_fatal("Your installation contains user-defined objects that refer to internal\n"
- "polymorphic functions with arguments of type 'anyarray' or 'anyelement'.\n"
+ "polymorphic functions with arguments of type \"anyarray\" or \"anyelement\".\n"
"These user-defined objects must be dropped before upgrading and restored\n"
"afterwards, changing them to refer to the new corresponding functions with\n"
- "arguments of type 'anycompatiblearray' and 'anycompatible'.\n"
+ "arguments of type \"anycompatiblearray\" and \"anycompatible\".\n"
"A list of the problematic objects is in the file:\n"
" %s", output_path);
}