]> granicus.if.org Git - postgis/commitdiff
fix error in index column name picked up when trying to install as extension
authorRegina Obe <lr@pcorp.us>
Wed, 10 Oct 2012 22:30:55 +0000 (22:30 +0000)
committerRegina Obe <lr@pcorp.us>
Wed, 10 Oct 2012 22:30:55 +0000 (22:30 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@10394 b70326c6-7e19-0410-871a-916f4a2858ee

extras/tiger_geocoder/tiger_2011/tables/lookup_tables_2011.sql

index c14d60d56fb7a780881e43bac386ec54e610d4c5..c8f647f9a806dc5863a82a3f838e334ad30eded3 100644 (file)
@@ -1179,7 +1179,7 @@ CREATE TABLE addrfeat
   CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'LINESTRING'::text OR the_geom IS NULL),
   CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 4269)
 );
-CREATE INDEX idx_addrfeat_geom_gist ON addrfeat USING gist(geom );
+CREATE INDEX idx_addrfeat_geom_gist ON addrfeat USING gist(the_geom );
 CREATE INDEX idx_addrfeat_tlid ON addrfeat USING btree(tlid);
 CREATE INDEX idx_addrfeat_zipl ON addrfeat USING btree(zipl);
 CREATE INDEX idx_addrfeat_zipr ON addrfeat USING btree(zipr);