X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/85d65a2fd27cc5bc47685e7759a1895e1f9f2236..f5e52e748f0a4275e3238e51c47de2ddccfea0ff:/lib-sql/indices.sql diff --git a/lib-sql/indices.sql b/lib-sql/indices.sql index 332cbb00..9bbc7527 100644 --- a/lib-sql/indices.sql +++ b/lib-sql/indices.sql @@ -63,12 +63,12 @@ CREATE INDEX IF NOT EXISTS idx_postcode_postcode {% if postgres.has_index_non_key_column %} CREATE INDEX IF NOT EXISTS idx_placex_housenumber - ON placex USING btree (parent_place_id) {{db.tablespace.search_index}} - INCLUDE (housenumber) + ON placex USING btree (parent_place_id) + INCLUDE (housenumber) {{db.tablespace.search_index}} WHERE housenumber is not null; CREATE INDEX IF NOT EXISTS idx_osmline_parent_osm_id_with_hnr - ON location_property_osmline USING btree(parent_place_id) {{db.tablespace.search_index}} - INCLUDE (startnumber, endnumber) + ON location_property_osmline USING btree(parent_place_id) + INCLUDE (startnumber, endnumber) {{db.tablespace.search_index}} WHERE startnumber is not null; {% endif %} {% endif %}