paleolimbot opened a new issue, #379: URL: https://github.com/apache/sedona-db/issues/379
Found while writing the release post: ```python import os os.environ["RUST_BACKTRACE"] = "1" # pip install "apache-sedona[db]" import sedona.db sd = sedona.db.connect() url = "https://github.com/geoarrow/geoarrow-data/releases/download/v0.2.0/ns-water_water-point_geo.parquet" sd.read_parquet(url).to_view("water_point") sd.sql(""" SELECT * FROM water_point ORDER BY sd_order(geometry) """).to_parquet("foofy.parquet", geoparquet_version="1.1") #> thread 'tokio-runtime-worker' (32273613) panicked at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/datafusion-physical-plan-50.2.0/src/sorts/stream.rs:251:56: #> field values #> stack backtrace: #> 0: __rustc::rust_begin_unwind #> 1: core::panicking::panic_fmt #> 2: core::option::expect_failed #> 3: <datafusion_physical_plan::sorts::stream::FieldCursorStream<T> as datafusion_physical_plan::sorts::stream::PartitionedStream>::poll_next #> 4: datafusion_physical_plan::sorts::merge::SortPreservingMergeStream<C>::maybe_poll_stream #> 5: <datafusion_physical_plan::sorts::merge::SortPreservingMergeStream<C> as futures_core::stream::Stream>::poll_next #> 6: datafusion_common_runtime::trace_utils::trace_future::{{closure}} #> 7: <futures_util::future::future::map::Map<Fut,F> as core::future::future::Future>::poll #> 8: tokio::runtime::task::raw::poll #> ... ``` -- 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]
