From ba62fe32c391a33eac533b0cc4d4c163e4844c56 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 8 Jul 2000 03:04:41 +0000 Subject: Remove long-dead support for invoking queries from dynamically loaded backend functions via backend PQexec(). The SPI interface has long been our only documented way to do this, and the backend pqexec/portal code is unused and suffering bit-rot. I'm putting it out of its misery. --- src/backend/utils/init/postinit.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'src/backend/utils/init/postinit.c') diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 0d5d070c8db..ba0e2dd97af 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.62 2000/07/03 03:27:31 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.63 2000/07/08 03:04:16 tgl Exp $ * * *------------------------------------------------------------------------- @@ -24,7 +24,6 @@ #include "access/heapam.h" #include "catalog/catname.h" #include "catalog/pg_database.h" -#include "libpq/libpq.h" #include "miscadmin.h" #include "storage/backendid.h" #include "storage/proc.h" @@ -228,15 +227,6 @@ InitPostgres(const char *dbname) { bool bootstrap = IsBootstrapProcessingMode(); - /* ---------------- - * initialize the backend local portal stack used by - * internal PQ function calls. see src/lib/libpq/be-dumpdata.c - * This is different from the "portal manager" so this goes here. - * -cim 2/12/91 - * ---------------- - */ - be_portalinit(); - /* initialize the local buffer manager */ InitLocalBuffer(); -- cgit v1.2.3