]> git.openstreetmap.org Git - nominatim.git/commitdiff
replace ST_Line_Interpolate_Point with ST_LineInterpolatePoint (DB adaption needed)
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 6 Feb 2014 07:04:42 +0000 (08:04 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Fri, 7 Feb 2014 19:10:14 +0000 (20:10 +0100)
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


No differences found