Commit 9293589d authored by Peter Eisentraut's avatar Peter Eisentraut

pg_upgrade: Adjust quoting style in message to match guidelines

parent bb30410b
...@@ -1094,10 +1094,10 @@ check_for_incompatible_polymorphics(ClusterInfo *cluster) ...@@ -1094,10 +1094,10 @@ check_for_incompatible_polymorphics(ClusterInfo *cluster)
fclose(script); fclose(script);
pg_log(PG_REPORT, "fatal\n"); pg_log(PG_REPORT, "fatal\n");
pg_fatal("Your installation contains user-defined objects that refer to internal\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" "These user-defined objects must be dropped before upgrading and restored\n"
"afterwards, changing them to refer to the new corresponding functions with\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" "A list of the problematic objects is in the file:\n"
" %s\n\n", output_path); " %s\n\n", output_path);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment