HINT: No function matches the given name and argument types. You might need to add explicit type casts.
It is common when using different versions of PostgreSQL, the name of the functions can change their name.
In my particular case, migrating from version 9 to 12, the error appears with the following function
LINE 10: select ST_Line_Interpolate_Point(geom,distance) as ge...
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
Just change the function name ST_Line_Interpolate_Point to: ST_LineInterpolatePoint
Enjoy!
Comments
Post a Comment