[postgis-tickets] r14860 - #3413, typo in find_srid error notice

Daniel Baston dbaston at gmail.com
Tue Apr 26 17:06:35 PDT 2016


Author: dbaston
Date: 2016-04-26 17:06:35 -0700 (Tue, 26 Apr 2016)
New Revision: 14860

Modified:
   trunk/postgis/postgis.sql.in
Log:
#3413, typo in find_srid error notice

Modified: trunk/postgis/postgis.sql.in
===================================================================
--- trunk/postgis/postgis.sql.in	2016-04-26 23:19:09 UTC (rev 14859)
+++ trunk/postgis/postgis.sql.in	2016-04-27 00:06:35 UTC (rev 14860)
@@ -2654,7 +2654,7 @@
 
 	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;



More information about the postgis-tickets mailing list