From: Paul Ramsey Date: Mon, 25 Mar 2019 17:39:09 +0000 (+0000) Subject: Pre-emptively drop functions w/ changed signatures X-Git-Tag: 3.0.0alpha1~76 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=688b9e8630d5a51dfd4ffed2c31ed0f801213273;p=postgis Pre-emptively drop functions w/ changed signatures References #4345 git-svn-id: http://svn.osgeo.org/postgis/trunk@17357 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/postgis_drop_before.sql b/postgis/postgis_drop_before.sql index 15eb7b261..0c7924eb4 100644 --- a/postgis/postgis_drop_before.sql +++ b/postgis/postgis_drop_before.sql @@ -67,6 +67,13 @@ DROP FUNCTION IF EXISTS ST_AsTWKB(geometry,int4); DROP FUNCTION IF EXISTS ST_AsTWKB(geometry,int4,int8); DROP FUNCTION IF EXISTS ST_AsTWKB(geometry,int4,int8,boolean); +-- Going from un-named to named arguments +DROP FUNCTION _st_linecrossingdirection(geometry,geometry); +DROP FUNCTION _st_orderingequals(geometry,geometry); +DROP FUNCTION st_orderingequals(geometry,geometry); +DROP FUNCTION st_askml(geometry, integer); +DROP FUNCTION st_buffer(geometry, double precision); + -- Old signatures for protobuf related functions improved in 2.4.0 RC/final DROP AGGREGATE IF EXISTS ST_AsMVT(text, int4, text, anyelement); DROP FUNCTION IF EXISTS ST_AsMVTGeom(geom geometry, bounds box2d, extent int4, buffer int4, clip_geom bool);