]> granicus.if.org Git - postgis/commitdiff
- City names are 90 characters (this matters more than you might
authorStephen Frost <sfrost@snowman.net>
Sun, 8 Jul 2007 21:56:47 +0000 (21:56 +0000)
committerStephen Frost <sfrost@snowman.net>
Sun, 8 Jul 2007 21:56:47 +0000 (21:56 +0000)
  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)

git-svn-id: http://svn.osgeo.org/postgis/trunk@2649 b70326c6-7e19-0410-871a-916f4a2858ee

extras/tiger_geocoder/tables/lookup_tables.sql

index 2fafa8c30dc825acd336588339580d72b55bab92..e4840a67d2179934851d9619d7d0afdb60e13b3c 100644 (file)
@@ -845,7 +845,7 @@ CREATE TABLE zip_lookup_base (
     zip     INTEGER,
     state   VARCHAR(40),
     county  VARCHAR(90),
-    city    VARCHAR(100),
+    city    VARCHAR(90),
     PRIMARY KEY (zip)
 );