Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
9293589d
Commit
9293589d
authored
Jul 18, 2022
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pg_upgrade: Adjust quoting style in message to match guidelines
parent
bb30410b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/bin/pg_upgrade/check.c
src/bin/pg_upgrade/check.c
+2
-2
No files found.
src/bin/pg_upgrade/check.c
View file @
9293589d
...
...
@@ -1094,10 +1094,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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment