Fix typo in update_osm_park_polygon_row function

This commit is contained in:
Adrien Matissart 2018-12-19 17:58:42 +01:00
parent 3a1a2b4210
commit 993d0ef589

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$