From: Sarah Hoffmann Date: Sun, 7 Sep 2014 15:17:49 +0000 (+0200) Subject: add simplified geometry index for reverse queries X-Git-Tag: v2.3.0~11 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/031f20c3e67f9237a5dec6f7fce7af12672245ff?hp=--cc add simplified geometry index for reverse queries --- 031f20c3e67f9237a5dec6f7fce7af12672245ff diff --git a/sql/indices.src.sql b/sql/indices.src.sql index ea57e74b..f715df8d 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); CREATE INDEX idx_placex_pendingsector ON placex USING BTREE (rank_search,geometry_sector) where indexed_status > 0; CREATE INDEX idx_placex_parent_place_id ON placex USING BTREE (parent_place_id) where parent_place_id IS NOT NULL; CREATE INDEX idx_placex_interpolation ON placex USING BTREE (geometry_sector) where indexed_status > 0 and class='place' and type='houses'; +CREATE INDEX idx_placex_reverse_geometry ON placex USING gist (geometry) 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); CREATE INDEX idx_search_name_country_centroid ON search_name_country USING GIST (centroid);