From: Regina Obe Date: Mon, 27 Apr 2015 17:43:20 +0000 (+0000) Subject: change to drop view if exists just in case it doesn't X-Git-Tag: 2.2.0rc1~542 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce9e43f6a322e9c7cfd5d2e28f98be178b065786;p=postgis change to drop view if exists just in case it doesn't git-svn-id: http://svn.osgeo.org/postgis/trunk@13454 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/postgis_drop_before.sql b/postgis/postgis_drop_before.sql index dbaf912a0..11fad60e6 100644 --- a/postgis/postgis_drop_before.sql +++ b/postgis/postgis_drop_before.sql @@ -66,4 +66,4 @@ 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); -DROP VIEW geometry_columns; -- removed cast 2.2.0 so need to recreate +DROP VIEW IF EXISTS geometry_columns; -- removed cast 2.2.0 so need to recreate