[postgis-commits] svn - r2649 - trunk/extras/tiger_geocoder/tables
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Sun Jul 8 14:56:48 PDT 2007
Author: snowman
Date: 2007-07-08 14:56:47 -0700 (Sun, 08 Jul 2007)
New Revision: 2649
Modified:
trunk/extras/tiger_geocoder/tables/lookup_tables.sql
Log:
- City names are 90 characters (this matters more than you might
think because it affects the types returned from the various
calls and if they don't match subsequent geocode() queries in
the same session may complain about the planned record type not
matching across calls)
Modified: trunk/extras/tiger_geocoder/tables/lookup_tables.sql
===================================================================
--- trunk/extras/tiger_geocoder/tables/lookup_tables.sql 2007-07-06 16:45:59 UTC (rev 2648)
+++ trunk/extras/tiger_geocoder/tables/lookup_tables.sql 2007-07-08 21:56:47 UTC (rev 2649)
@@ -845,7 +845,7 @@
zip INTEGER,
state VARCHAR(40),
county VARCHAR(90),
- city VARCHAR(100),
+ city VARCHAR(90),
PRIMARY KEY (zip)
);
More information about the postgis-commits
mailing list