]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-sql/indices.sql
change updates to handle delete/insert workflow
[nominatim.git] / lib-sql / indices.sql
index b1396034bbaa87c7da83616f24fc425434b19f78..54e88fd8f2d277d5380d36f9baccb10c3db6f8b2 100644 (file)
@@ -82,4 +82,14 @@ CREATE INDEX IF NOT EXISTS idx_postcode_postcode
       INCLUDE (startnumber, endnumber) {{db.tablespace.search_index}}
       WHERE startnumber is not null;
   {% endif %}
+---
+-- Table needed for running updates with osm2pgsql on place.
+  CREATE TABLE IF NOT EXISTS place_to_be_deleted (
+    osm_type CHAR(1),
+    osm_id BIGINT,
+    class TEXT,
+    type TEXT,
+    deferred BOOLEAN
+   );
+
 {% endif %}