]> granicus.if.org Git - postgis/commitdiff
Remove functions moved to postgis_legacy.c
authorRegina Obe <lr@pcorp.us>
Sun, 25 Nov 2018 08:37:50 +0000 (08:37 +0000)
committerRegina Obe <lr@pcorp.us>
Sun, 25 Nov 2018 08:37:50 +0000 (08:37 +0000)
References #4193 for PostGIS 3.0 (trunk)

git-svn-id: http://svn.osgeo.org/postgis/trunk@17073 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/lwgeom_accum.c

index 22d65d561f17ad7d944d7d84a29debf7e0bfef82..9eee89c2c2da60612adc5d492fb924e98b2eabe6 100644 (file)
@@ -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);