Move findoidjoins out of contrib and into src/tools, which is a more
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 23 Jun 2005 02:33:28 +0000 (02:33 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 23 Jun 2005 02:33:28 +0000 (02:33 +0000)
logical place for it since it is of no use to users.  Per recent
discussions on cleaning up contrib.

contrib/Makefile
contrib/README
contrib/findoidjoins/Makefile [deleted file]
src/tools/findoidjoins/Makefile [new file with mode: 0644]
src/tools/findoidjoins/README [moved from contrib/findoidjoins/README.findoidjoins with 93% similarity]
src/tools/findoidjoins/findoidjoins.c [moved from contrib/findoidjoins/findoidjoins.c with 97% similarity]
src/tools/findoidjoins/make_oidjoins_check [moved from contrib/findoidjoins/make_oidjoins_check with 100% similarity]

index 893a2c6e0b902e044762c9490b53315040fa2058..0641b50872d659406a5f3a0219f9aabe937bcb2b 100644 (file)
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/contrib/Makefile,v 1.55 2005/06/22 22:56:25 tgl Exp $
+# $PostgreSQL: pgsql/contrib/Makefile,v 1.56 2005/06/23 02:33:25 tgl Exp $
 
 subdir = contrib
 top_builddir = ..
@@ -13,7 +13,6 @@ WANTED_DIRS = \
                dbmirror        \
                dbsize          \
                earthdistance   \
-               findoidjoins    \
                fulltextindex   \
                fuzzystrmatch   \
                intagg          \
index f14481c7bae92519be3c3042ff2f40d0b1244be6..3e1ae62b00cb83d8352e5cf4191f11f1885d3367 100644 (file)
@@ -62,11 +62,6 @@ earthdistance -
        Operator for computing earth distance for two points
        by Hal Snyder <hal@vailsys.com>
 
-findoidjoins -
-       Finds the joins used by oid columns by examining the actual
-       values in the oid columns and row oids.
-       by Bruce Momjian <pgman@candle.pha.pa.us>
-
 fulltextindex -
        Full text indexing using triggers
        by Maarten Boekhold <maartenb@dutepp0.et.tudelft.nl>
diff --git a/contrib/findoidjoins/Makefile b/contrib/findoidjoins/Makefile
deleted file mode 100644 (file)
index a15378a..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# $PostgreSQL: pgsql/contrib/findoidjoins/Makefile,v 1.17 2005/03/25 18:17:10 momjian Exp $
-
-PROGRAM = findoidjoins
-OBJS   = findoidjoins.o
-
-PG_CPPFLAGS = -I$(libpq_srcdir)
-PG_LIBS = $(libpq_pgport)
-
-SCRIPTS = make_oidjoins_check
-DOCS = README.findoidjoins
-
-ifdef USE_PGXS
-PGXS = $(shell pg_config --pgxs)
-include $(PGXS)
-else
-subdir = contrib/findoidjoins
-top_builddir = ../..
-include $(top_builddir)/src/Makefile.global
-include $(top_srcdir)/contrib/contrib-global.mk
-endif
diff --git a/src/tools/findoidjoins/Makefile b/src/tools/findoidjoins/Makefile
new file mode 100644 (file)
index 0000000..5a11276
--- /dev/null
@@ -0,0 +1,25 @@
+#-------------------------------------------------------------------------
+#
+# Makefile for src/tools/findoidjoins
+#
+# Copyright (c) 2003-2005, PostgreSQL Global Development Group
+#
+# $PostgreSQL: pgsql/src/tools/findoidjoins/Makefile,v 1.1 2005/06/23 02:33:28 tgl Exp $
+#
+#-------------------------------------------------------------------------
+
+subdir = src/tools/findoidjoins
+top_builddir = ../../..
+include $(top_builddir)/src/Makefile.global
+
+override CPPFLAGS := -DFRONTEND -I$(libpq_srcdir) $(CPPFLAGS)
+
+OBJS= findoidjoins.o
+
+all: submake-libpq submake-libpgport findoidjoins
+
+findoidjoins: findoidjoins.o $(libpq_builddir)/libpq.a
+       $(CC) $(CFLAGS) findoidjoins.o $(libpq_pgport) $(LDFLAGS) $(LIBS) -o $@$(X)
+
+clean distclean maintainer-clean:
+       rm -f findoidjoins$(X) $(OBJS)
similarity index 93%
rename from contrib/findoidjoins/README.findoidjoins
rename to src/tools/findoidjoins/README
index a96641430ab1174bdd59f5f1acc267a8799e2956..ce31b19472845c716dcd61576866a4ed8323e2ff 100644 (file)
@@ -7,10 +7,10 @@ anything but an empty database, such as template1; else it's likely to
 be very slow.
 
 Run on an empty database, it returns the system join relationships (shown
-below for 8.0).  Note that unexpected matches may indicate bogus entries
+below for 8.1).  Note that unexpected matches may indicate bogus entries
 in system tables --- don't accept a peculiar match without question.
 In particular, a field shown as joining to more than one target table is
-probably messed up.  In 8.0, the *only* fields that should join to more
+probably messed up.  In 8.1, the *only* fields that should join to more
 than one target are pg_description.objoid, pg_depend.objid, and
 pg_depend.refobjid.  (Running make_oidjoins_check is an easy way to spot
 fields joining to more than one table, BTW.)
@@ -26,22 +26,22 @@ revision in the patterns of cross-links between system tables.
 (Ideally we'd just regenerate the script as part of the regression
 tests themselves, but that seems too slow...)
 
-NOTE: in 8.0, make_oidjoins_check produces one bogus join check:
+NOTE: in 8.1, make_oidjoins_check produces two bogus join checks:
 Join pg_catalog.pg_class.relfilenode => pg_catalog.pg_class.oid
-This is an artifact and should not be added to the oidjoins regress test.
-Also beware of any claim that pg_database.datlastsysoid joins to anything;
-this does not actually happen in 8.0, but it did happen before and might
-happen again in future, depending on what operation initdb does last.
+Join pg_catalog.pg_database.datlastsysoid => pg_catalog.pg_database.oid
+These are artifacts and should not be added to the oidjoins regress test.
 
 ---------------------------------------------------------------------------
 
 Join pg_catalog.pg_aggregate.aggfnoid => pg_catalog.pg_proc.oid
 Join pg_catalog.pg_aggregate.aggtransfn => pg_catalog.pg_proc.oid
 Join pg_catalog.pg_aggregate.aggfinalfn => pg_catalog.pg_proc.oid
+Join pg_catalog.pg_aggregate.aggsortop => pg_catalog.pg_operator.oid
 Join pg_catalog.pg_aggregate.aggtranstype => pg_catalog.pg_type.oid
-Join pg_catalog.pg_am.amgettuple => pg_catalog.pg_proc.oid
 Join pg_catalog.pg_am.aminsert => pg_catalog.pg_proc.oid
 Join pg_catalog.pg_am.ambeginscan => pg_catalog.pg_proc.oid
+Join pg_catalog.pg_am.amgettuple => pg_catalog.pg_proc.oid
+Join pg_catalog.pg_am.amgetmulti => pg_catalog.pg_proc.oid
 Join pg_catalog.pg_am.amrescan => pg_catalog.pg_proc.oid
 Join pg_catalog.pg_am.amendscan => pg_catalog.pg_proc.oid
 Join pg_catalog.pg_am.ammarkpos => pg_catalog.pg_proc.oid
similarity index 97%
rename from contrib/findoidjoins/findoidjoins.c
rename to src/tools/findoidjoins/findoidjoins.c
index 3afcd7c3c35973791a3a9d441f25bd8b99ba4599..db1fc12460c731c8f0eb51990c9be1c10096db9b 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2002-2005, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/contrib/findoidjoins/findoidjoins.c,v 1.25 2005/01/01 05:43:05 momjian Exp $
+ * $PostgreSQL: pgsql/src/tools/findoidjoins/findoidjoins.c,v 1.1 2005/06/23 02:33:28 tgl Exp $
  */
 #include "postgres_fe.h"