2020-02-12 13:03:20 +03:00
|
|
|
-- Indices used only during search and update.
|
|
|
|
-- These indices are created only after the indexing process is done.
|
|
|
|
|
2020-08-18 17:58:58 +03:00
|
|
|
CREATE INDEX CONCURRENTLY idx_placex_pendingsector ON placex USING BTREE (rank_address,geometry_sector) {ts:address-index} where indexed_status > 0;
|
2020-02-12 13:03:20 +03:00
|
|
|
|
|
|
|
CREATE INDEX CONCURRENTLY idx_location_area_country_place_id ON location_area_country USING BTREE (place_id) {ts:address-index};
|
|
|
|
|
|
|
|
DROP INDEX CONCURRENTLY IF EXISTS place_id_idx;
|
2020-02-25 00:42:03 +03:00
|
|
|
CREATE UNIQUE INDEX CONCURRENTLY idx_place_osm_unique on place using btree(osm_id,osm_type,class,type) {ts:address-index};
|