diff options
-rwxr-xr-x | check_postgres.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 390de9cfe..553ceda68 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -6279,6 +6279,14 @@ sub check_same_schema { next; } + ## If we are doing a historical comparison, skip some items + if ($samedb) { + if ($item eq 'sequence' + and $col eq 'last_value') { + next; + } + } + push @msg => sprintf " %s\n", msg('ss-different', $col); for my $db (sort keys %{ $tdiff->{coldiff}{$col} }) { push @msg => sprintf " %s %s: %s\n", |