Commit 28377213 authored by Simon Riggs's avatar Simon Riggs

Temporarily silence pg_upgrade's checksums check

parent ceabfb20
...@@ -621,12 +621,12 @@ check_control_data(ControlData *oldctrl, ...@@ -621,12 +621,12 @@ check_control_data(ControlData *oldctrl,
"options.\n"); "options.\n");
} }
/* We might eventually allow upgrades from checksum to no-checksum clusters. */ // /* We might eventually allow upgrades from checksum to no-checksum clusters. */
if (oldctrl->data_checksums != newctrl->data_checksums) // if (oldctrl->data_checksums != newctrl->data_checksums)
{ // {
pg_log(PG_FATAL, // pg_log(PG_FATAL,
"old and new pg_controldata checksums settings are invalid or do not match\n"); // "old and new pg_controldata checksums settings are invalid or do not match\n");
} // }
} }
......
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