Comparing `maps-test2001` and `maps2001` showed these index differences:
=== maps-test2001
Yuri added this index for the geoshape featuer T134084 - needs to be added
```lang=sql
CREATE INDEX planet_osm_polygon_wikidata ON planet_osm_polygon USING btree (((tags -> 'wikidata'::text))) WHERE (tags ? 'wikidata'::text);
```
@maxsem, is this index needed?
```lang=sql
CREATE INDEX planet_osm_rels_idx ON planet_osm_rels USING btree (id) WHERE pending;
```
@maxsem, is this index needed?
```lang=sql
CREATE INDEX planet_osm_ways_idx ON planet_osm_ways USING btree (id) WHERE pending;
```
=== maps2001
This index exists on the new servers, but it appears to be almost an exact duplicate of the other index that exists on both:
```lang=sql
CREATE INDEX water_polygons_index ON water_polygons USING gist (way) WITH (fillfactor='100');
-- exists on both:
CREATE INDEX water_polygons_way_idx ON water_polygons USING gist (way);
```