]> granicus.if.org Git - postgis/commitdiff
#3413, typo in find_srid error notice
authorDaniel Baston <dbaston@gmail.com>
Wed, 27 Apr 2016 00:06:35 +0000 (00:06 +0000)
committerDaniel Baston <dbaston@gmail.com>
Wed, 27 Apr 2016 00:06:35 +0000 (00:06 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@14860 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/postgis.sql.in

index 8fdcc3e7bc1600fbc5fe46630a1d3ee585998a73..4aa7854f8e17f5d2f6dc1001fbdb6e106bd6852a 100644 (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;