]> granicus.if.org Git - postgis/commitdiff
Change error message to be more relevant
authorPaul Ramsey <pramsey@cleverelephant.ca>
Wed, 8 Jul 2009 00:20:48 +0000 (00:20 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Wed, 8 Jul 2009 00:20:48 +0000 (00:20 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4268 b70326c6-7e19-0410-871a-916f4a2858ee

utils/postgis_proc_upgrade.pl

index c50648c85d03a880853d23258bc2b48367b4ff43..c38ffbfc4027577de7b2b52a7c31556fc1fec01a 100755 (executable)
@@ -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;