mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
update to latest osm2pgsql version
The latest version of osm2pgsql no longer creates indexes on the members of planet_osm_rels. So we do that ourselves. Given that we only need to access associated street relations, the index can become quite a bit smaller.
This commit is contained in:
Submodule osm2pgsql updated: b8af2b242f...acbec68bbf
@@ -260,3 +260,6 @@ CREATE TABLE wikipedia_redirect (
|
|||||||
);
|
);
|
||||||
ALTER TABLE ONLY wikipedia_redirect ADD CONSTRAINT wikipedia_redirect_pkey PRIMARY KEY (language, from_title);
|
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'];
|
||||||
|
|||||||
Reference in New Issue
Block a user