File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1533,6 +1533,7 @@ package check_postgres;
1533
1533
' filter=s@' , # # used by same_schema only
1534
1534
' suffix=s' , # # used by same_schema only
1535
1535
' replace' , # # used by same_schema only
1536
+ ' skipsequencevals' , # # used by same_schema only
1536
1537
' lsfunc=s' , # # used by wal_files and archive_ready
1537
1538
' skipcycled' , # # used by sequence only
1538
1539
);
@@ -7687,6 +7688,9 @@ sub schema_item_differences {
7687
7688
# # Skip certain known numeric fields that have text versions:
7688
7689
next if $col =~ / .(?:namespace|owner|filenode|oid|relid)$ / ;
7689
7690
7691
+ # # We may want to skip the "data" of the sequences
7692
+ next if $opt {skipsequencevals } and $item_class eq ' sequence' ;
7693
+
7690
7694
# # If not a list, just report on the exact match here and move on:
7691
7695
if (! exists $lists -> {$col } and $col !~ / .acl$ / ) {
7692
7696
$nomatch {$name }{coldiff }{$col }{$db1 } = $one -> {$col };
You can’t perform that action at this time.
0 commit comments