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 b48d5a56 chore(deps): bump the datafusion-arrow-parquet group with 18
updates
add b38ad859 feat(rust/sedona-functions): make ST_Translate accept deltaZ
arg (#524)
add 93a3c0a5 chore(rust/sedona-spatial-join): Split large join result
batches into smaller ones (#525)
add e106ce65 feat(rust/sedona-expr): Implement item crs wrapper around
aggregate functions (#520)
add 71123806 feat(rust/sedona-spatial-join): Add a repartitioner to write
spatially repartitioned data to spill files (#527)
add 7ea6f494 feat(rust/sedona-functions): Implement
`ST_GeomFromWKBUnchecked()` (#533)
add a95d9a48 fix(sedona-raster-functions): Handle array inputs in
coordinate conversion functions (#532)
add 55408450 feat(c/sedona-tg): Implement item-crs wrappers for tg
predicate kernels (#528)
add 90601cdb fix(python/sedonadb): Tweaks to support pandas>=3.0 (#538)
add 233a3298 feat(c/sedona-proj): Implement item crs support for
ST_Transform (#531)
add 4f7a9b39 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 (b48d5a56)
\
N -- N -- N
refs/heads/dependabot/cargo/datafusion-arrow-parquet-c355afec92 (4f7a9b39)
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:
Cargo.lock | 6 +-
c/sedona-geos/src/register.rs | 2 +-
c/sedona-geos/src/st_polygonize_agg.rs | 40 +-
c/sedona-proj/Cargo.toml | 1 +
c/sedona-proj/src/st_transform.rs | 1081 +++++++++-------
c/sedona-tg/src/binary_predicate.rs | 81 +-
c/sedona-tg/src/register.rs | 2 +-
python/sedonadb/python/sedonadb/dataframe.py | 3 +
python/sedonadb/tests/functions/test_functions.py | 47 +-
python/sedonadb/tests/functions/test_transforms.py | 68 +
python/sedonadb/tests/test_datasource.py | 9 +-
rust/sedona-expr/src/aggregate_udf.rs | 55 +-
rust/sedona-expr/src/function_set.rs | 22 +-
rust/sedona-expr/src/item_crs.rs | 270 +++-
rust/sedona-functions/src/executor.rs | 11 +-
rust/sedona-functions/src/register.rs | 1 +
rust/sedona-functions/src/st_analyze_agg.rs | 40 +-
rust/sedona-functions/src/st_collect_agg.rs | 162 ++-
rust/sedona-functions/src/st_envelope_agg.rs | 29 +-
rust/sedona-functions/src/st_geomfromwkb.rs | 128 +-
rust/sedona-functions/src/st_translate.rs | 237 +++-
rust/sedona-geo/Cargo.toml | 1 +
rust/sedona-geo/src/register.rs | 2 +-
rust/sedona-geo/src/st_intersection_agg.rs | 37 +-
rust/sedona-geo/src/st_union_agg.rs | 41 +-
rust/sedona-geometry/src/analyze.rs | 9 +-
.../src/rs_rastercoordinate.rs | 102 +-
.../src/rs_worldcoordinate.rs | 100 +-
rust/sedona-schema/src/crs.rs | 4 +-
rust/sedona-spatial-join/Cargo.toml | 5 +
.../bench/partitioning/stream_repartitioner.rs | 243 ++++
rust/sedona-spatial-join/src/evaluated_batch.rs | 5 +
.../src/evaluated_batch/evaluated_batch_stream.rs | 6 +-
.../evaluated_batch_stream/in_mem.rs | 2 +-
.../src/index/build_side_collector.rs | 2 +-
.../sedona-spatial-join/src/index/spatial_index.rs | 10 +-
.../src/index/spatial_index_builder.rs | 4 +-
rust/sedona-spatial-join/src/operand_evaluator.rs | 3 +
rust/sedona-spatial-join/src/partitioning.rs | 2 +
.../src/partitioning/partition_slots.rs | 85 ++
.../src/partitioning/stream_repartitioner.rs | 1359 ++++++++++++++++++++
rust/sedona-spatial-join/src/partitioning/util.rs | 7 +
rust/sedona-spatial-join/src/stream.rs | 569 ++++++--
rust/sedona-spatial-join/src/utils/spill.rs | 8 +-
rust/sedona-testing/src/testers.rs | 12 +-
rust/sedona/src/context.rs | 6 +-
46 files changed, 4143 insertions(+), 776 deletions(-)
create mode 100644
rust/sedona-spatial-join/bench/partitioning/stream_repartitioner.rs
create mode 100644 rust/sedona-spatial-join/src/partitioning/partition_slots.rs
create mode 100644
rust/sedona-spatial-join/src/partitioning/stream_repartitioner.rs