Closes #2655
git-svn-id: http://svn.osgeo.org/postgis/trunk@12273
b70326c6-7e19-0410-871a-
916f4a2858ee
WHEN undefined_function OR invalid_schema_name THEN
topo_scr_ver := NULL;
RAISE NOTICE 'Function postgis_topology_scripts_installed() not found. Is topology support enabled and topology.sql installed?';
+ WHEN insufficient_privilege THEN
+ RAISE NOTICE 'Topology support cannot be inspected. Is current user granted USAGE on schema "topology" ?';
+ WHEN OTHERS THEN
+ RAISE NOTICE 'Function postgis_topology_scripts_installed() could not be called: % (%)', SQLERRM, SQLSTATE;
END;
BEGIN