Remove unused indexes (#1520)

Based on analysis from planet builds for this layer as well as running updates via the integrity script as discussed in #1516, these three indexes are not used and can be removed.
This commit is contained in:
Brian Sperlongano 2023-05-10 01:39:45 -04:00 committed by GitHub
parent 91dd853a89
commit 9969c5c741
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 6 deletions

View File

@ -49,8 +49,6 @@ $$ LANGUAGE SQL;
SELECT update_osm_city_point(true); SELECT update_osm_city_point(true);
CREATE INDEX IF NOT EXISTS osm_city_point_rank_idx ON osm_city_point ("rank");
-- Handle updates -- Handle updates
CREATE OR REPLACE FUNCTION place_city.store() RETURNS trigger AS CREATE OR REPLACE FUNCTION place_city.store() RETURNS trigger AS

View File

@ -98,8 +98,6 @@ $$ LANGUAGE SQL;
SELECT update_osm_country_point(true); SELECT update_osm_country_point(true);
CREATE INDEX IF NOT EXISTS osm_country_point_rank_idx ON osm_country_point ("rank");
-- Handle updates -- Handle updates
CREATE OR REPLACE FUNCTION place_country.store() RETURNS trigger AS CREATE OR REPLACE FUNCTION place_country.store() RETURNS trigger AS

View File

@ -60,8 +60,6 @@ $$ LANGUAGE SQL;
SELECT update_osm_state_point(true); SELECT update_osm_state_point(true);
CREATE INDEX IF NOT EXISTS osm_state_point_rank_idx ON osm_state_point ("rank");
-- Handle updates -- Handle updates
CREATE OR REPLACE FUNCTION place_state.store() RETURNS trigger AS CREATE OR REPLACE FUNCTION place_state.store() RETURNS trigger AS