[postgis-tickets] r17073 - Remove functions moved to postgis_legacy.c

Regina Obe lr at pcorp.us
Sun Nov 25 12:37:50 PST 2018


Author: robe
Date: 2018-11-25 00:37:50 -0800 (Sun, 25 Nov 2018)
New Revision: 17073

Modified:
   trunk/postgis/lwgeom_accum.c
Log:
Remove functions moved to postgis_legacy.c
References #4193 for PostGIS 3.0 (trunk)

Modified: trunk/postgis/lwgeom_accum.c
===================================================================
--- trunk/postgis/lwgeom_accum.c	2018-11-25 04:35:17 UTC (rev 17072)
+++ trunk/postgis/lwgeom_accum.c	2018-11-25 08:37:50 UTC (rev 17073)
@@ -50,32 +50,6 @@
 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);



More information about the postgis-tickets mailing list