]> git.openstreetmap.org Git - nominatim.git/blobdiff - sql/indices.src.sql
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / sql / indices.src.sql
index fe42a7c3965a5b11c0b76c65614b17a0a850f037..4685ae2f7d5ac3b71f6e653932a099f661ddf425 100644 (file)
@@ -1,9 +1,3 @@
--- osm2pgsql slim tables were on SSD just to speed up the import
--- move them back to normal space
-ALTER INDEX planet_osm_nodes_pkey SET TABLESPACE "data";
-ALTER INDEX planet_osm_ways_nodes SET TABLESPACE "data";
-ALTER INDEX planet_osm_rels_parts SET TABLESPACE "data";
-
 -- Indices used only during search and update.
 -- These indices are created only after the indexing process is done.
 
@@ -24,13 +18,16 @@ 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;
-CREATE INDEX idx_search_name_country_nameaddress_vector ON search_name_country USING GIN (nameaddress_vector) WITH (fastupdate = off) TABLESPACE ssd;
 
 -- start
 CREATE INDEX idx_location_property_-partition-_centroid ON location_property_-partition- USING GIST (centroid) TABLESPACE ssd;
 -- 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);