From a71ce08f0992c235a51647f6dd0e99a14105f0cd Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Thu, 19 Sep 2013 12:11:06 +0200 Subject: [PATCH] Fix same_schema check on 9.3 by ignoring relminmxid differences in pg_class --- check_postgres.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.39.5