]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix typo
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 3 Jul 2017 21:03:19 +0000 (23:03 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sat, 19 Aug 2017 17:37:05 +0000 (19:37 +0200)
sql/tables.sql

index 98bf0c02599d90b95ce5c18d8259a041106c5628..caaa62dfdccd5addfbedca702d8298e5b0a7ae55 100644 (file)
@@ -226,8 +226,8 @@ CREATE TABLE import_polygon_error (
   country_code varchar(2),
   updated timestamp,
   errormessage text,
-  prevgeometry GEOMTRY(Geometry, 4326),
-  newgeometry GEOMTRY(Geometry, 4326)
+  prevgeometry GEOMETRY(Geometry, 4326),
+  newgeometry GEOMETRY(Geometry, 4326)
   );
 CREATE INDEX idx_import_polygon_error_osmid ON import_polygon_error USING BTREE (osm_type, osm_id);
 GRANT SELECT ON import_polygon_error TO "{www-user}";