From: Sarah Hoffmann Date: Thu, 6 Feb 2014 07:04:42 +0000 (+0100) Subject: replace ST_Line_Interpolate_Point with ST_LineInterpolatePoint (DB adaption needed) X-Git-Tag: v2.2.0~9 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/e0b1e3b66d54c4fe9907edb1ff993f33e6739d46?hp=e0b1e3b66d54c4fe9907edb1ff993f33e6739d46 replace ST_Line_Interpolate_Point with ST_LineInterpolatePoint (DB adaption needed) Name of function was changed in postgis 2.1 and now prints ugly deprecation warnings. For older versions of postgis, function will be renamed to the new name during the setup of the DB. To update existing databases with postgis < 2.1 run: ALTER FUNCTION st_line_interpolate_point(geometry, double precision) RENAME TO ST_LineInterpolatePoint and then reinstall the SQL functions: ./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions ---