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/libpq/hba.c | |
parent | a98eaa0191b5b7ef3bc69a66e04ae4cf304072a0 (diff) |
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/libpq/hba.c')
-rw-r--r-- | src/backend/libpq/hba.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index 61c6b9f4361..dca3cf4fc3c 100644 --- a/src/backend/libpq/hba.c +++ b/src/backend/libpq/hba.c @@ -5,7 +5,7 @@ * wherein you authenticate a user by seeing what IP address the system * says he comes from and possibly using ident). * - * $Id: hba.c,v 1.52 2000/06/02 15:57:20 momjian Exp $ + * $Id: hba.c,v 1.53 2000/07/08 03:04:39 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -22,6 +22,7 @@ #include "libpq/libpq.h" #include "miscadmin.h" +#include "storage/fd.h" #define MAX_TOKEN 80 |