paleolimbot opened a new issue, #126:
URL: https://github.com/apache/sedona-db/issues/126
The "constructor" family of functions accepts SRID arguments in PostGIS;
however, our kernels don't support that yet.
We might be able to do this generically with something like
```rust
struct SRIDifiedKernel {
inner: ScalarKernelRef,
}
impl SedonaScalarKernel for SRIDifiedKernel {
// Wrap the self.inner implementations but ensure we also accept the
extra argument
}
```
We do have `ST_SetSRID()` as a workaround (where we could perhaps lift or
integrate the input SRID handling).
--
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]