yutannihilation opened a new pull request, #448:
URL: https://github.com/apache/sedona-db/pull/448
I found mismatches of function names during addressing #428. Currently, if a
user tries to use `ST_LineLocatePoint`, they gets a bit confusing error which
suggests a wrong function name. `ST_LineLocatePoint` is anyway not implemented
and this probably doesn't happen if it's implemented. So, this pull request
doesn't matter much and is mainly for correctness.
```sql
> SELECT ST_LineLocatePoint(ST_GeomFromWKT('LINESTRING(38 16, 38 50, 65 50,
66 16, 38 16)'), ST_Point(38, 50));
Error during planning: Invalid function 'st_linelocatepoint'.
Did you mean 'st_line_locate_point'?
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]