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
750ccaef
Commit
750ccaef
authored
May 16, 2015
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pg_upgrade: no need to check for matching float8_pass_by_value
Report by Noah Misch
parent
c65aa7a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/bin/pg_upgrade/controldata.c
src/bin/pg_upgrade/controldata.c
+1
-2
No files found.
src/bin/pg_upgrade/controldata.c
View file @
750ccaef
...
@@ -564,8 +564,7 @@ check_control_data(ControlData *oldctrl,
...
@@ -564,8 +564,7 @@ check_control_data(ControlData *oldctrl,
if
(
oldctrl
->
date_is_int
!=
newctrl
->
date_is_int
)
if
(
oldctrl
->
date_is_int
!=
newctrl
->
date_is_int
)
pg_fatal
(
"old and new pg_controldata date/time storage types do not match
\n
"
);
pg_fatal
(
"old and new pg_controldata date/time storage types do not match
\n
"
);
if
(
oldctrl
->
float8_pass_by_value
!=
newctrl
->
float8_pass_by_value
)
/* float8_pass_by_value does not need to match */
pg_fatal
(
"old and new pg_controldata float8 argument passing methods do not match
\n
"
);
/*
/*
* We might eventually allow upgrades from checksum to no-checksum
* We might eventually allow upgrades from checksum to no-checksum
...
...
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