From: Daniel Baston Date: Wed, 9 Mar 2016 13:06:52 +0000 (+0000) Subject: #3460, ST_ClusterWithin 'tolerance not defined' error after upgrade X-Git-Tag: 2.3.0beta1~178 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45227bedcc5f844e013af60259240be8ae8bad5b;p=postgis #3460, ST_ClusterWithin 'tolerance not defined' error after upgrade git-svn-id: http://svn.osgeo.org/postgis/trunk@14766 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/postgis_drop_after.sql b/postgis/postgis_drop_after.sql index 37cca8bdb..b5b4be39e 100644 --- a/postgis/postgis_drop_after.sql +++ b/postgis/postgis_drop_after.sql @@ -165,3 +165,7 @@ DROP FUNCTION IF EXISTS pgis_twkb_accum_finalfn(internal); -- temporarely introd DROP FUNCTION IF EXISTS st_seteffectivearea(geometry, double precision); -- temporarely introduced before 2.2.0 final DROP FUNCTION IF EXISTS geometry_distance_box_nd(geometry,geometry); -- temporarely introduced before 2.2.0 final + +-- pgis_abs type was increased from 8 bytes in 2.1 to 16 bytes in 2.2 +-- See #3460 +UPDATE pg_type SET typlen=16 WHERE typname='pgis_abs' AND typlen=8;