Merge pull request #1995 from lonvia/update-osm2pgsql

update to latest osm2pgsql version
This commit is contained in:
Sarah Hoffmann
2020-10-05 18:14:29 +02:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -260,3 +260,6 @@ CREATE TABLE wikipedia_redirect (
);
ALTER TABLE ONLY wikipedia_redirect ADD CONSTRAINT wikipedia_redirect_pkey PRIMARY KEY (language, from_title);
-- osm2pgsql does not create indexes on the middle tables for Nominatim
-- Add one for lookup of associated street relations.
CREATE INDEX planet_osm_rels_parts_associated_idx ON planet_osm_rels USING gin(parts) WHERE tags @> ARRAY['associatedStreet'];