Temporarily silence pg_upgrade's checksums check

This commit is contained in:
Simon Riggs 2013-04-30 14:34:47 +01:00
parent ceabfb20f9
commit 28377213bb
1 changed files with 6 additions and 6 deletions

View File

@ -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");
} // }
} }