This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/cargo/datafusion-arrow-parquet-c355afec92
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
discard 4f7a9b39 chore(deps): bump the datafusion-arrow-parquet group with 18
updates
add a20fca55 chore: Update `.asf.yaml` collaborators list (#541)
add a9ceb6a0 chore(rust/sedona-spatial-join): Revamp memory reservation
pattern for spatial join (#534)
add a0c6b9f8 chore(rust/sedona-geoparquet): Fix clippy errors (#540)
add acd3bd1e feat(rust/sedona): Improve sd_random_geometry() and expose as
a Python function (#97)
add ace5542a feat(rust/sedona-functions): Implement ST_AsEWKB with item
CRS support (#535)
add 17302072 chore(deps): bump the datafusion-arrow-parquet group with 18
updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (4f7a9b39)
\
N -- N -- N
refs/heads/dependabot/cargo/datafusion-arrow-parquet-c355afec92 (17302072)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.asf.yaml | 2 -
Cargo.lock | 140 ++++----
Cargo.toml | 20 +-
benchmarks/test_bench_base.py | 26 +-
benchmarks/test_knn.py | 8 +-
python/sedonadb/python/sedonadb/context.py | 10 +-
.../sedonadb/functions/__init__.py} | 32 +-
python/sedonadb/python/sedonadb/functions/table.py | 114 +++++++
python/sedonadb/python/sedonadb/testing.py | 21 +-
python/sedonadb/tests/functions/test_aggregate.py | 2 +-
python/sedonadb/tests/functions/test_wkb.py | 93 ++++++
.../sedonadb/tests/test_funcs.py | 14 +-
python/sedonadb/tests/test_knnjoin.py | 110 ++----
python/sedonadb/tests/test_sjoin.py | 91 ++---
rust/sedona-common/src/error.rs | 17 +-
rust/sedona-functions/src/executor.rs | 14 +
rust/sedona-functions/src/lib.rs | 1 +
rust/sedona-functions/src/register.rs | 1 +
rust/sedona-functions/src/st_asewkb.rs | 368 +++++++++++++++++++++
rust/sedona-geometry/src/ewkb_factory.rs | 353 ++++++++++++++++++++
rust/sedona-geometry/src/lib.rs | 1 +
rust/sedona-geoparquet/src/format.rs | 8 +-
rust/sedona-geoparquet/src/metadata.rs | 8 +-
rust/sedona-schema/src/crs.rs | 11 +-
rust/sedona-spatial-join/src/build_index.rs | 8 +-
.../src/index/build_side_collector.rs | 40 ++-
rust/sedona-spatial-join/src/index/knn_adapter.rs | 39 +--
.../sedona-spatial-join/src/index/spatial_index.rs | 17 +-
.../src/index/spatial_index_builder.rs | 101 ++++--
rust/sedona-spatial-join/src/refine.rs | 16 +-
rust/sedona-spatial-join/src/refine/geo.rs | 4 +
rust/sedona-spatial-join/src/refine/geos.rs | 7 +
rust/sedona-spatial-join/src/refine/tg.rs | 7 +
rust/sedona-spatial-join/src/utils.rs | 1 -
.../src/utils/concurrent_reservation.rs | 176 ----------
rust/sedona-testing/src/benchmark_util.rs | 14 +-
rust/sedona-testing/src/datagen.rs | 363 +++++++++++++++++---
rust/sedona/src/random_geometry_provider.rs | 193 ++++++++---
rust/sedona/src/record_batch_reader_provider.rs | 13 +-
39 files changed, 1801 insertions(+), 663 deletions(-)
copy python/sedonadb/{tests/conftest.py =>
python/sedonadb/functions/__init__.py} (58%)
create mode 100644 python/sedonadb/python/sedonadb/functions/table.py
create mode 100644 python/sedonadb/tests/functions/test_wkb.py
copy c/sedona-tg/vendor-tg.sh => python/sedonadb/tests/test_funcs.py (74%)
create mode 100644 rust/sedona-functions/src/st_asewkb.rs
create mode 100644 rust/sedona-geometry/src/ewkb_factory.rs
delete mode 100644 rust/sedona-spatial-join/src/utils/concurrent_reservation.rs