]> granicus.if.org Git - postgis/commitdiff
Do not run postgis_full_version() at the end of extensions upgrade
authorSandro Santilli <strk@kbt.io>
Wed, 6 Mar 2019 10:13:03 +0000 (10:13 +0000)
committerSandro Santilli <strk@kbt.io>
Wed, 6 Mar 2019 10:13:03 +0000 (10:13 +0000)
.. it won't have all the new information as transaction is not
completed by that time ..

git-svn-id: http://svn.osgeo.org/postgis/trunk@17290 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/postgis.sql.in

index 3c36587921905b2439049c3c49b208898da99c70..daeb1d085fb6d2d76a99dbad9e96ecca91ee8758 100644 (file)
@@ -2942,7 +2942,7 @@ BEGIN
 
        END LOOP;
 
-       RETURN @extschema@.postgis_full_version();
+       RETURN 'Upgrade completed, run postgis_full_version() for details';
 
 END
 $$ LANGUAGE plpgsql VOLATILE;