X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/c371bbcfe45904ab56ece73f709b75e5ef6502fd..27984ef340c389886a6b80d2a867d234f9ee0c1c:/sql/indices.src.sql?ds=sidebyside diff --git a/sql/indices.src.sql b/sql/indices.src.sql index 4dc23bd2..4685ae2f 100644 --- a/sql/indices.src.sql +++ b/sql/indices.src.sql @@ -18,6 +18,7 @@ CREATE INDEX idx_placex_rank_address ON placex USING BTREE (rank_address) TABLES CREATE INDEX idx_placex_pendingsector ON placex USING BTREE (rank_search,geometry_sector) TABLESPACE ssd where indexed_status > 0; CREATE INDEX idx_placex_parent_place_id ON placex USING BTREE (parent_place_id) TABLESPACE ssd where parent_place_id IS NOT NULL; CREATE INDEX idx_placex_interpolation ON placex USING BTREE (geometry_sector) TABLESPACE ssd where indexed_status > 0 and class='place' and type='houses'; +CREATE INDEX idx_placex_reverse_geometry ON placex USING gist (geometry) TABLESPACE ssd where rank_search != 28 and (name is not null or housenumber is not null) and class not in ('waterway','railway','tunnel','bridge'); CREATE INDEX idx_location_area_country_place_id ON location_area_country USING BTREE (place_id) TABLESPACE ssd; CREATE INDEX idx_search_name_country_centroid ON search_name_country USING GIST (centroid) TABLESPACE ssd; @@ -27,3 +28,6 @@ CREATE INDEX idx_location_property_-partition-_centroid ON location_property_-pa -- end CREATE UNIQUE INDEX idx_place_osm_unique on place using btree(osm_id,osm_type,class,type); + + +CREATE INDEX idx_gb_postcode_postcode ON gb_postcode USING BTREE (postcode);