yutannihilation commented on PR #245: URL: https://github.com/apache/sedona-db/pull/245#issuecomment-3455898023
Thanks for reviewing! Sorry, this was unexpected, but I just found [the document](https://postgis.net/docs/en/ST_StartPoint.html) has this small note > Enhanced: 3.2.0 returns a point for all geometries. Prior behavior returns NULLs if input was not a LineString. and this is the actual behavior (while the example on the document returns `t`...) ``` postgres=# SELECT ST_StartPoint('POINT(0 1)'::geometry) IS NULL AS is_null; is_null --------- f (1 row) ``` Probably I need some time to update the implementation. -- 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]
