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/include/utils/builtins.h | |
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/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index eedc9766302..e2c66f513d5 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.121 2000/07/07 19:24:43 petere Exp $ + * $Id: builtins.h,v 1.122 2000/07/08 03:04:36 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -184,14 +184,6 @@ extern Datum rt_poly_size(PG_FUNCTION_ARGS); extern POLYGON *rt_poly_union(POLYGON *a, POLYGON *b); extern POLYGON *rt_poly_inter(POLYGON *a, POLYGON *b); -/* projection utilities */ -/* extern char *GetAttributeByName(); - extern char *GetAttributeByNum(); , - in executor/executor.h*/ - - -extern int32 pqtest(struct varlena * vlena); - /* arrayfuncs.c */ /* filename.c */ |