-
Hello, I loaded the example data taxi_zones.shx and I got a following error: runtime error: member access within misaligned address 0x7f849824e03c for type 'spatial::core::Vertex', which requires 8 byte alignment I tried installing and loading spatial extension, running the same query on the same dataset but in the original duckdb code (https://github.com/duckdb/duckdb) and the query worked. Does anybody know why is this happening, am I doing smth wrong in duckdb_spatial extension? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi! When building spatial in debug mode, UBSAN - a tool to detect potential errors is enabled. I'm aware of this issue, In practice it's not a problem but it hasn't been fixed yet since I'm reworking this part of the code anyway. However, this is a good reminder to finish it sooner rather than later.. |
Beta Was this translation helpful? Give feedback.
-
Give me a couple of hours and Ill squash this |
Beta Was this translation helpful? Give feedback.
Hi! When building spatial in debug mode, UBSAN - a tool to detect potential errors is enabled. I'm aware of this issue, In practice it's not a problem but it hasn't been fixed yet since I'm reworking this part of the code anyway. However, this is a good reminder to finish it sooner rather than later..