aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-07-18 14:53:00 +0200
committerPeter Eisentraut <peter@eisentraut.org>2022-07-18 14:53:26 +0200
commit9a01ea73dac662019677e982999712acd6c1f899 (patch)
tree9e32341ea92cc0f2093c8aff101ea3e1884e50d1
parentb681ca7635c4082c76f069d4d1dc2ca61975ca59 (diff)
downloadpostgresql-9a01ea73dac662019677e982999712acd6c1f899.tar.gz
postgresql-9a01ea73dac662019677e982999712acd6c1f899.zip
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 69611bef4ab..2b3fafd94d4 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\n");
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\n\n", output_path);
}