diff options
author | Andres Freund <andres@anarazel.de> | 2018-09-27 11:24:49 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2018-09-27 11:38:11 -0700 |
commit | 27e082b0c6e564facfbf54b56090fdcc4bf44cca (patch) | |
tree | 3f3005b05051f85030158c95f8c194682f0f671d /doc/src | |
parent | ea53100d5671b5b243f77898b0b04d23c38b2820 (diff) |
Clean up in the wake of TupleDescGetSlot() removal / 10763358c3f.
The previous commit wasn't careful enough to remove all traces of
TupleDescGetSlot().
Besides fixing the oversight of not removing TupleDescGetSlot()'s
declaration, this also removes FuncCallContext->slot. That was
documented to be for use in combination with TupleDescGetSlot(), a
cursory search over extensions finds no users, and there doesn't seem
to be convincing reasons to keep it around. If we later in the v12
release cycle find users, we can re-consider this part of the commit.
Reported-By: Michael Paquier
Discussion: https://postgr.es/m/20180926000413.GC1659@paquier.xyz
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/xfunc.sgml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index 3f3d46414ca..1a74d931736 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -2871,14 +2871,6 @@ typedef struct FuncCallContext uint64 max_calls; /* - * OPTIONAL pointer to result slot - * - * This is obsolete and only present for backward compatibility, viz, - * user-defined SRFs that use the deprecated TupleDescGetSlot(). - */ - TupleTableSlot *slot; - - /* * OPTIONAL pointer to miscellaneous user-provided context information * * user_fctx is for use as a pointer to your own data to retain |