From: Regina Obe Date: Sun, 25 Nov 2018 08:37:50 +0000 (+0000) Subject: Remove functions moved to postgis_legacy.c X-Git-Tag: 3.0.0alpha1~261 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0333e87e0e9b82f54a73980a6fb30e3b9aa0805f;p=postgis Remove functions moved to postgis_legacy.c References #4193 for PostGIS 3.0 (trunk) git-svn-id: http://svn.osgeo.org/postgis/trunk@17073 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/lwgeom_accum.c b/postgis/lwgeom_accum.c index 22d65d561..9eee89c2c 100644 --- a/postgis/lwgeom_accum.c +++ b/postgis/lwgeom_accum.c @@ -50,32 +50,6 @@ Datum pgis_geometry_makeline_finalfn(PG_FUNCTION_ARGS); Datum pgis_geometry_clusterintersecting_finalfn(PG_FUNCTION_ARGS); Datum pgis_geometry_clusterwithin_finalfn(PG_FUNCTION_ARGS); -/** Putting pgis_abs back for ABI compatibility with 2.4 and below - * TODO: Drop when 3.0 rolls around **/ -Datum pgis_abs_in(PG_FUNCTION_ARGS); -Datum pgis_abs_out(PG_FUNCTION_ARGS); - -/** -** Putting back pgis_* for ABI compatibility to smooth pg_upgrade -** TODO: Drop when 3.0 rolls around -*/ -PG_FUNCTION_INFO_V1(pgis_abs_in); -Datum -pgis_abs_in(PG_FUNCTION_ARGS) -{ - ereport(ERROR,(errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("function %s not implemented", __func__))); - PG_RETURN_POINTER(NULL); -} -PG_FUNCTION_INFO_V1(pgis_abs_out); -Datum -pgis_abs_out(PG_FUNCTION_ARGS) -{ - ereport(ERROR,(errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("function %s not implemented", __func__))); - PG_RETURN_POINTER(NULL); -} - /* External prototypes */ Datum pgis_union_geometry_array(PG_FUNCTION_ARGS); Datum LWGEOM_collect_garray(PG_FUNCTION_ARGS);