summaryrefslogtreecommitdiff
path: root/src/include/funcapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/funcapi.h')
-rw-r--r--src/include/funcapi.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/include/funcapi.h b/src/include/funcapi.h
index 01aa208c5ee..6a9eb4366c3 100644
--- a/src/include/funcapi.h
+++ b/src/include/funcapi.h
@@ -75,14 +75,6 @@ typedef struct FuncCallContext
uint64 max_calls;
/*
- * OPTIONAL pointer to result slot
- *
- * This is obsolete and only present for backwards 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 struct to retain
@@ -221,8 +213,6 @@ extern TupleDesc build_function_result_tupdesc_t(HeapTuple procTuple);
* TupleDesc based on a named relation.
* TupleDesc TypeGetTupleDesc(Oid typeoid, List *colaliases) - Use to get a
* TupleDesc based on a type OID.
- * TupleTableSlot *TupleDescGetSlot(TupleDesc tupdesc) - Builds a
- * TupleTableSlot, which is not needed anymore.
* TupleGetDatum(TupleTableSlot *slot, HeapTuple tuple) - get a Datum
* given a tuple and a slot.
*----------
@@ -240,7 +230,6 @@ extern TupleDesc BlessTupleDesc(TupleDesc tupdesc);
extern AttInMetadata *TupleDescGetAttInMetadata(TupleDesc tupdesc);
extern HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values);
extern Datum HeapTupleHeaderGetDatum(HeapTupleHeader tuple);
-extern TupleTableSlot *TupleDescGetSlot(TupleDesc tupdesc);
/*----------