From 2f93569d429fe348fd940f0fa2b4e960a024e044 Mon Sep 17 00:00:00 2001 From: Daniel Baston Date: Wed, 27 Apr 2016 00:06:35 +0000 Subject: [PATCH] #3413, typo in find_srid error notice git-svn-id: http://svn.osgeo.org/postgis/trunk@14860 b70326c6-7e19-0410-871a-916f4a2858ee --- postgis/postgis.sql.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in index 8fdcc3e7b..4aa7854f8 100644 --- a/postgis/postgis.sql.in +++ b/postgis/postgis.sql.in @@ -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;