2010YOUY01 opened a new pull request, #533:
URL: https://github.com/apache/sedona-db/pull/533
`ST_GeomFromWKBUnchecked()` is equivalent to `ST_GeomFromWKB()`, but it
skips validation during conversion.
This API is more efficient but potentially unsafe, so it is exposed as a
separate function to make the lack of safety explicit.
An alternative would be to control validation via an additional argument,
but this was not chosen for the above reason.
```sql
select ST_GeomFromWKB('0x01....', false); -- Skip validation via `false` arg
```
--
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]