Opened 14 years ago
Closed 14 years ago
#1009 closed defect (fixed)
lookup_tables_2010.sql - Index creation error
Reported by: | egouge | Owned by: | robe |
---|---|---|---|
Priority: | low | Milestone: | PostGIS 2.0.0 |
Component: | tiger geocoder | Version: | master |
Keywords: | Cc: |
Description
Line 950 in tables/lookup_tables_2010.sql is creating an index on the faces table which at this point doesn't exist.
CREATE INDEX tiger_state_the_geom_gist ON faces USING gist(the_geom); should probably be: CREATE INDEX tiger_state_the_geom_gist ON state USING gist(the_geom);
Note:
See TracTickets
for help on using tickets.
Thanks. Fixed at r7345