From eddc128beac0f6e7b87e003888b0e947f7548e8a Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Tue, 18 Oct 2022 10:44:02 +0900 Subject: 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/20221013194820.ciktb2sbbpw7cljm@awork3.anarazel.de --- src/backend/utils/fmgr/funcapi.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/backend/utils/fmgr/funcapi.c') 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 @@ -56,15 +56,6 @@ static bool resolve_polymorphic_tupdesc(TupleDesc tupdesc, 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 * -- cgit v1.2.3