aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/init/postinit.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-07-08 03:04:41 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-07-08 03:04:41 +0000
commitba62fe32c391a33eac533b0cc4d4c163e4844c56 (patch)
tree5e282d8e1ddbcfb3798054e7de8694347445b2bd /src/backend/utils/init/postinit.c
parenta98eaa0191b5b7ef3bc69a66e04ae4cf304072a0 (diff)
downloadpostgresql-ba62fe32c391a33eac533b0cc4d4c163e4844c56.tar.gz
postgresql-ba62fe32c391a33eac533b0cc4d4c163e4844c56.zip
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.
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r--src/backend/utils/init/postinit.c12
1 files changed, 1 insertions, 11 deletions
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();