paleolimbot opened a new issue, #1038:
URL: https://github.com/apache/sedona-db/issues/1038
CoPilot seems to think this has to do with ItemCrsKernel wrapper but I
haven't checked.
```python
import sedona.db
sd = sedona.db.connect()
sd.sql("""
SELECT d, ST_DWithin(
ST_GeomFromText('LINESTRING (130 0, 0 0, 0 150)'),
ST_GeomFromText('LINESTRING (10 10, 10 150, 130 10)'),
d
) as h
FROM (VALUES (0.1), (0.25), (0.5), (0.75), (1.0)) AS t(d)
ORDER BY d
""").show()
#> SedonaError: UDF st_dwithin returned a different number of rows than
expected. Expected: 5, Got: 1.
#> This issue was likely caused by a bug in DataFusion's code. Please help
us to resolve this by filing a bug report in our issue tracker:
https://github.com/apache/dataf
```
--
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]