Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33a1c21
)
Write error messages about duplicate OIDs to stderr
author
Peter Eisentraut
<peter_e@gmx.net>
Mon, 30 Apr 2018 18:18:46 +0000
(14:18 -0400)
committer
Peter Eisentraut
<peter_e@gmx.net>
Mon, 30 Apr 2018 18:18:46 +0000
(14:18 -0400)
src/backend/catalog/genbki.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/catalog/genbki.pl
b/src/backend/catalog/genbki.pl
index 123c03b1c113dca716e7d5f9149598f274cded4d..fb61db0a05fdf1e9f18ab14ed3e93ba48682f834 100644
(file)
--- a/
src/backend/catalog/genbki.pl
+++ b/
src/backend/catalog/genbki.pl
@@
-137,8
+137,8
@@
my $found = 0;
foreach my $oid (keys %oidcounts)
{
next unless $oidcounts{$oid} > 1;
- print
"Duplicate oid
s detected:\n" if !$found;
- print "$oid\n";
+ print
STDERR "Duplicate OID
s detected:\n" if !$found;
+ print
STDERR
"$oid\n";
$found++;
}
die "found $found duplicate OID(s) in catalog data\n" if $found;