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/commands/async.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/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index ae5d3d2e9fe..1b1d59f77e4 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.65 2000/06/08 22:37:01 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.66 2000/07/08 03:04:12 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -87,6 +87,7 @@ #include "libpq/libpq.h" #include "libpq/pqformat.h" #include "miscadmin.h" +#include "tcop/dest.h" #include "utils/fmgroids.h" #include "utils/ps_status.h" #include "utils/syscache.h" |