summaryrefslogtreecommitdiff
path: root/src/backend/utils/fmgr/funcapi.c
diff options
context:
space:
mode:
authorMichael Paquier2022-10-18 01:44:02 +0000
committerMichael Paquier2022-10-18 01:44:02 +0000
commiteddc128beac0f6e7b87e003888b0e947f7548e8a (patch)
tree88747678c4534f6d09df98c9de89b82a36844d1a /src/backend/utils/fmgr/funcapi.c
parenta19e5cee635dc94c9c6e44c8863b4b770920a04b (diff)
Remove compatibility declarations for InitMaterializedSRF()
These routines have been renamed in a19e5ce. There is no need to keep the compatibility declarations on HEAD, as once an extension moves to the new routine name when compiling with v16~ the code would work the same way when recompiled on v15. No backpatch to v15 for this one, because ABI compatibility has to be maintained there. Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/utils/fmgr/funcapi.c')
-rw-r--r--src/backend/utils/fmgr/funcapi.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/backend/utils/fmgr/funcapi.c b/src/backend/utils/fmgr/funcapi.c
index 7ac6f36abe8..87cbb1d3e38 100644
--- a/src/backend/utils/fmgr/funcapi.c
+++ b/src/backend/utils/fmgr/funcapi.c
@@ -57,15 +57,6 @@ static TypeFuncClass get_type_func_class(Oid typid, Oid *base_typeid);
/*
- * Compatibility function for v15.
- */
-void
-SetSingleFuncCall(FunctionCallInfo fcinfo, bits32 flags)
-{
- InitMaterializedSRF(fcinfo, flags);
-}
-
-/*
* InitMaterializedSRF
*
* Helper function to build the state of a set-returning function used