diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-08 03:04:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-08 03:04:41 +0000 |
commit | ba62fe32c391a33eac533b0cc4d4c163e4844c56 (patch) | |
tree | 5e282d8e1ddbcfb3798054e7de8694347445b2bd /src/backend/postmaster/postmaster.c | |
parent | a98eaa0191b5b7ef3bc69a66e04ae4cf304072a0 (diff) | |
download | postgresql-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/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 9b30fa447d9..c20ddbd1ec4 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.152 2000/07/03 20:45:58 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.153 2000/07/08 03:04:13 tgl Exp $ * * NOTES * @@ -83,6 +83,7 @@ #include "storage/proc.h" #include "access/xlog.h" #include "tcop/tcopprot.h" +#include "utils/exc.h" #include "utils/guc.h" /* |