Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c567925

Browse files
committed
Write error messages about duplicate OIDs to stderr
1 parent 33a1c21 commit c567925

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/catalog/genbki.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@
137137
foreach my $oid (keys %oidcounts)
138138
{
139139
next unless $oidcounts{$oid} > 1;
140-
print "Duplicate oids detected:\n" if !$found;
141-
print "$oid\n";
140+
print STDERR "Duplicate OIDs detected:\n" if !$found;
141+
print STDERR "$oid\n";
142142
$found++;
143143
}
144144
die "found $found duplicate OID(s) in catalog data\n" if $found;

0 commit comments

Comments
 (0)