From: Simon Riggs Date: Tue, 30 Apr 2013 13:34:47 +0000 (+0100) Subject: Temporarily silence pg_upgrade's checksums check X-Git-Tag: bdr/0.4~117 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=28377213bb6550cc5035b0ba258b518f80c1aaae;p=users%2Fandresfreund%2Fpostgres.git Temporarily silence pg_upgrade's checksums check --- diff --git a/contrib/pg_upgrade/controldata.c b/contrib/pg_upgrade/controldata.c index e9376e207f..3c9d115b7e 100644 --- a/contrib/pg_upgrade/controldata.c +++ b/contrib/pg_upgrade/controldata.c @@ -621,12 +621,12 @@ check_control_data(ControlData *oldctrl, "options.\n"); } - /* We might eventually allow upgrades from checksum to no-checksum clusters. */ - if (oldctrl->data_checksums != newctrl->data_checksums) - { - pg_log(PG_FATAL, - "old and new pg_controldata checksums settings are invalid or do not match\n"); - } +// /* We might eventually allow upgrades from checksum to no-checksum clusters. */ +// if (oldctrl->data_checksums != newctrl->data_checksums) +// { +// pg_log(PG_FATAL, +// "old and new pg_controldata checksums settings are invalid or do not match\n"); +// } }