From: Christoph Berg Date: Thu, 19 Sep 2013 10:11:06 +0000 (+0200) Subject: Fix same_schema check on 9.3 by ignoring relminmxid differences in pg_class X-Git-Tag: 2.21.0~15 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=a71ce08f0992c235a51647f6dd0e99a14105f0cd;p=check_postgres.git Fix same_schema check on 9.3 by ignoring relminmxid differences in pg_class --- diff --git a/check_postgres.pl b/check_postgres.pl index 10e4c5c8e..2a2f9b1ce 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -6328,7 +6328,7 @@ sub check_same_schema { [type => '', '' ], [schema => '', '' ], [function => 'source_checksum,prolang,prorettype', '' ], - [table => 'reltype,relfrozenxid,relpages, + [table => 'reltype,relfrozenxid,relminmxid,relpages, reltuples,relnatts,relallvisible', '' ], [view => 'reltype', '' ], [sequence => 'reltype,log_cnt,relnatts,is_called', '' ], @@ -9767,6 +9767,9 @@ Items not specifically attributed are by GSM (Greg Sabino Mullane). setting SKIP_NETWORK_TESTS will skip the new_version tests; other minor test suite fixes. (Christoph Berg) + Fix same_schema check on 9.3 by ignoring relminmxid differences in pg_class + (Christoph Berg) + =item B June 24, 2013 Make connection check failures return CRITICAL not UNKNOWN