Fix same_schema check on 9.3 by ignoring relminmxid differences in pg_class
authorChristoph Berg <[email protected]>
Thu, 19 Sep 2013 10:11:06 +0000 (12:11 +0200)
committerChristoph Berg <[email protected]>
Thu, 19 Sep 2013 10:11:06 +0000 (12:11 +0200)
check_postgres.pl

index 10e4c5c8ead5ced8c1b08e7dfcdfae1c8c6e5598..2a2f9b1ce5f06e96b69dbe6da1c34277a897ec06 100755 (executable)
@@ -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