Merge pull request #552 from amatissart/fix-park-trigger

Fix typo in update_osm_park_polygon_row function
This commit is contained in:
Martin Mikita 2018-12-19 18:19:23 +01:00 committed by GitHub
commit 99f8ee07be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ AS
$BODY$
BEGIN
NEW.tags = update_tags(NEW.tags, NEW.geometry);
NEW.geometry_point = NEW.st_centroid(geometry);
NEW.geometry_point = st_centroid(NEW.geometry);
RETURN NEW;
END;
$BODY$