]> granicus.if.org Git - postgresql/commitdiff
Fix duplicate_oids and unused_oids so user needn't cd to catalog dir.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 26 Apr 2018 15:19:52 +0000 (11:19 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 26 Apr 2018 15:20:01 +0000 (11:20 -0400)
Previously, you had to cd into src/include/catalog before running either
of these scripts.  That's a bit tedious, so let's make the scripts do it
for you.

In passing, improve the initial comments in both scripts.  Also remove
unused_oids' code to complain about duplicate oids.  That was added in
yesterday's commit 5602265f7, but on second thought we shouldn't be
randomly redefining the script's behavior that way.

John Naylor and Tom Lane

Discussion: https://postgr.es/m/37D774E4-FE1F-437E-B3D2-593F314B7505@postgrespro.ru

src/include/catalog/duplicate_oids
src/include/catalog/unused_oids

index 0d7aa15559bda955fd9574ef594b48691c5801f8..072fc00c7041b4cd9b6b28f9a4aeb60fe4457970 100755 (executable)
@@ -1,11 +1,31 @@
 #!/usr/bin/perl
-
-use lib '../../backend/catalog/';
-use Catalog;
+#----------------------------------------------------------------------
+#
+# duplicate_oids
+#    Identifies any manually-assigned OIDs that are used multiple times
+#    in the Postgres catalog data.
+#
+#    While duplicate OIDs would only cause a failure if they appear in
+#    the same catalog, our project policy is that manually assigned OIDs
+#    should be globally unique, to avoid confusion.
+#
+# Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
+#
+# src/include/catalog/duplicate_oids
+#
+#----------------------------------------------------------------------
 
 use strict;
 use warnings;
 
+# Must run in src/include/catalog
+use FindBin;
+chdir $FindBin::RealBin or die "could not cd to $FindBin::RealBin: $!\n";
+
+use lib "$FindBin::RealBin/../../backend/catalog/";
+use Catalog;
+
 my @input_files = (glob("pg_*.h"), qw(indexing.h toasting.h));
 
 my $oids = Catalog::FindAllOidsFromHeaders(@input_files);
index a727225abcb5ae948c102ae20ef63ebe567f552c..2780de052c9c6a1912c44c1cb507366848e8fd25 100755 (executable)
@@ -1,26 +1,33 @@
 #!/usr/bin/perl
+#----------------------------------------------------------------------
 #
 # unused_oids
+#    Finds blocks of manually-assignable OIDs that have not already been
+#    claimed by previous hackers.  The main use is for finding available
+#    OIDs for new internal functions.  The numbers printed are inclusive
+#    ranges of unused OIDs.
 #
-# src/include/catalog/unused_oids
-#
-#      finds blocks of manually-assignable oids that have not already been
-#      claimed by post_hackers.  primarily useful for finding available
-#      oids for new internal functions.  the numbers printed are inclusive
-#      ranges of unused oids.
+#    Before using a large empty block, make sure you aren't about
+#    to take over what was intended as expansion space for something
+#    else.
 #
-#      before using a large empty block, make sure you aren't about
-#      to take over what was intended as expansion space for something
-#      else.
+# Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-#      run this script in src/include/catalog.
+# src/include/catalog/unused_oids
 #
-use lib '../../backend/catalog/';
-use Catalog;
+#----------------------------------------------------------------------
 
 use strict;
 use warnings;
 
+# Must run in src/include/catalog
+use FindBin;
+chdir $FindBin::RealBin or die "could not cd to $FindBin::RealBin: $!\n";
+
+use lib "$FindBin::RealBin/../../backend/catalog/";
+use Catalog;
+
 my @input_files = (glob("pg_*.h"), qw(indexing.h toasting.h));
 
 my $oids = Catalog::FindAllOidsFromHeaders(@input_files);
@@ -45,10 +52,5 @@ foreach my $oid (sort { $a <=> $b } @{$oids})
                        printf "%d\n", $prev_oid + 1;
                }
        }
-       elsif ($oid == $prev_oid)
-       {
-               print "Duplicate oid detected: $oid\n";
-               exit 1;
-       }
        $prev_oid = $oid;
 }