From: Paul Ramsey Date: Wed, 8 Jul 2009 00:20:48 +0000 (+0000) Subject: Change error message to be more relevant X-Git-Tag: 1.5.0b1~589 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ddf5e2d54d4a7ef59c73b801d55d152366e2b76;p=postgis Change error message to be more relevant git-svn-id: http://svn.osgeo.org/postgis/trunk@4268 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/utils/postgis_proc_upgrade.pl b/utils/postgis_proc_upgrade.pl index c50648c85..c38ffbfc4 100755 --- a/utils/postgis_proc_upgrade.pl +++ b/utils/postgis_proc_upgrade.pl @@ -150,7 +150,7 @@ BEGIN SELECT into new_maj substring(new_scripts from 1 for 2); IF old_maj != new_maj THEN - RAISE EXCEPTION ''Scripts upgrade from version % to version % requires a dump/reload. See postgis manual for instructions'', old_scripts, new_scripts; + RAISE EXCEPTION ''Upgrade from version % to version % requires a dump/reload. See PostGIS manual for instructions'', old_scripts, new_scripts; ELSE RETURN ''Scripts versions checked for upgrade: ok''; END IF;