diff options
author | Christoph Berg | 2013-09-19 10:11:06 +0000 |
---|---|---|
committer | Christoph Berg | 2013-09-19 10:11:06 +0000 |
commit | a71ce08f0992c235a51647f6dd0e99a14105f0cd (patch) | |
tree | eaffbae2c55538c75baa0e17dfab06b0502b19cd /check_postgres.pl | |
parent | e2513f962d5657a3c7f699ad66aa8ed1d1bb1d94 (diff) |
Fix same_schema check on 9.3 by ignoring relminmxid differences in pg_class
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 5 |
1 files changed, 4 insertions, 1 deletions
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<Version 2.20.1> June 24, 2013 Make connection check failures return CRITICAL not UNKNOWN |