#3413, typo in find_srid error notice

git-svn-id: http://svn.osgeo.org/postgis/trunk@14860 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Daniel Baston 2016-04-27 00:06:35 +00:00
parent 85865626b5
commit 2f93569d42

View file

@ -2654,7 +2654,7 @@ BEGIN
select SRID into sr from geometry_columns where (f_table_schema = schem or schem = '') and f_table_name = tabl and f_geometry_column = $3;
IF NOT FOUND THEN
RAISE EXCEPTION 'find_srid() - couldnt find the corresponding SRID - is the geometry registered in the GEOMETRY_COLUMNS table? Is there an uppercase/lowercase missmatch?';
RAISE EXCEPTION 'find_srid() - could not find the corresponding SRID - is the geometry registered in the GEOMETRY_COLUMNS table? Is there an uppercase/lowercase mismatch?';
END IF;
return sr;
END;