summaryrefslogtreecommitdiff
path: root/check_postgres.pl
diff options
context:
space:
mode:
authorChristoph Berg2013-09-19 10:11:06 +0000
committerChristoph Berg2013-09-19 10:11:06 +0000
commita71ce08f0992c235a51647f6dd0e99a14105f0cd (patch)
treeeaffbae2c55538c75baa0e17dfab06b0502b19cd /check_postgres.pl
parente2513f962d5657a3c7f699ad66aa8ed1d1bb1d94 (diff)
Fix same_schema check on 9.3 by ignoring relminmxid differences in pg_class
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-xcheck_postgres.pl5
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