Skip to content

Commit 9293589

Browse files
committed
pg_upgrade: Adjust quoting style in message to match guidelines
1 parent bb30410 commit 9293589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_upgrade/check.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,10 +1094,10 @@ check_for_incompatible_polymorphics(ClusterInfo *cluster)
10941094
fclose(script);
10951095
pg_log(PG_REPORT, "fatal\n");
10961096
pg_fatal("Your installation contains user-defined objects that refer to internal\n"
1097-
"polymorphic functions with arguments of type 'anyarray' or 'anyelement'.\n"
1097+
"polymorphic functions with arguments of type \"anyarray\" or \"anyelement\".\n"
10981098
"These user-defined objects must be dropped before upgrading and restored\n"
10991099
"afterwards, changing them to refer to the new corresponding functions with\n"
1100-
"arguments of type 'anycompatiblearray' and 'anycompatible'.\n"
1100+
"arguments of type \"anycompatiblearray\" and \"anycompatible\".\n"
11011101
"A list of the problematic objects is in the file:\n"
11021102
" %s\n\n", output_path);
11031103
}

0 commit comments

Comments
 (0)