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 5d78a321 chore(deps): bump the datafusion-arrow-parquet group with 18
updates
add 90658675 feat(c/sedona-geos): Implement item crs support for
GEOS-based kernels (#509)
add fe01baed fix(rust/sedona-spatial-join): Fix KDB partitioner to produce
no less than specified number of partitions (#513)
add 931558e3 chore(rust/sedona-spatial-join): Support right mark joins and
enabled tests for all kinds of spatial joins (#514)
add 01f56a9e chore(rust/sedona-spatial-join): More accurate batch
in-memory size estimation (#515)
add fb158760 feat(rust/sedona-expr): Add GroupsAccumulator to framework
and implementation for ST_Envelope_Agg (#510)
add f251ab4a chore(rust/sedona-spatial-join): Evaluate spatial predicate
operands in EvaluateOperandBatchStream (#521)
add 2535b299 fix(rust/sedona): Strip schema metadata when input uses
RecordBatchReaderProvider (#517)
add 7d50b710 feat(rust/sedona-spatial-join) Spatial index supports async
batch query and parallel refinement (#523)
add 06ce2cc9 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 (5d78a321)
\
N -- N -- N
refs/heads/dependabot/cargo/datafusion-arrow-parquet-c355afec92 (06ce2cc9)
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:
c/sedona-geos/src/register.rs | 154 +++---
c/sedona-geos/src/st_area.rs | 16 +-
c/sedona-geos/src/st_boundary.rs | 21 +-
c/sedona-geos/src/st_buffer.rs | 28 +-
c/sedona-geos/src/st_centroid.rs | 23 +-
c/sedona-geos/src/st_concavehull.rs | 33 +-
c/sedona-geos/src/st_convexhull.rs | 23 +-
c/sedona-geos/src/st_dwithin.rs | 22 +-
c/sedona-geos/src/st_isring.rs | 16 +-
c/sedona-geos/src/st_issimple.rs | 16 +-
c/sedona-geos/src/st_isvalid.rs | 16 +-
c/sedona-geos/src/st_isvalidreason.rs | 16 +-
c/sedona-geos/src/st_length.rs | 16 +-
c/sedona-geos/src/st_line_merge.rs | 30 +-
c/sedona-geos/src/st_makevalid.rs | 23 +-
c/sedona-geos/src/st_minimumclearance.rs | 16 +-
c/sedona-geos/src/st_minimumclearance_line.rs | 24 +-
c/sedona-geos/src/st_nrings.rs | 18 +-
c/sedona-geos/src/st_numinteriorrings.rs | 18 +-
c/sedona-geos/src/st_numpoints.rs | 18 +-
c/sedona-geos/src/st_perimeter.rs | 16 +-
c/sedona-geos/src/st_polygonize.rs | 26 +-
c/sedona-geos/src/st_simplify.rs | 26 +-
c/sedona-geos/src/st_simplifypreservetopology.rs | 29 +-
c/sedona-geos/src/st_snap.rs | 30 +-
c/sedona-geos/src/st_unaryunion.rs | 25 +-
python/sedonadb/tests/functions/test_aggregate.py | 114 +++-
python/sedonadb/tests/test_sjoin.py | 221 +++++++-
rust/sedona-common/src/option.rs | 7 +
rust/sedona-expr/src/aggregate_udf.rs | 61 ++-
rust/sedona-functions/src/st_envelope_agg.rs | 232 +++++++-
rust/sedona-spatial-join/src/build_index.rs | 21 +-
rust/sedona-spatial-join/src/evaluated_batch.rs | 11 +-
.../src/evaluated_batch/evaluated_batch_stream.rs | 8 +
.../evaluated_batch_stream/evaluate.rs | 217 ++++++++
.../evaluated_batch_stream/in_mem.rs | 10 +-
rust/sedona-spatial-join/src/exec.rs | 201 ++++++-
.../src/index/build_side_collector.rs | 72 ++-
.../sedona-spatial-join/src/index/spatial_index.rs | 502 ++++++++++++++++-
.../src/index/spatial_index_builder.rs | 8 +-
rust/sedona-spatial-join/src/operand_evaluator.rs | 16 +-
rust/sedona-spatial-join/src/partitioning/kdb.rs | 115 +++-
rust/sedona-spatial-join/src/stream.rs | 352 ++++++------
rust/sedona-spatial-join/src/utils.rs | 1 +
rust/sedona-spatial-join/src/utils/arrow_utils.rs | 603 +++++++++++++++++++++
rust/sedona-spatial-join/src/utils/join_utils.rs | 108 ++--
rust/sedona-testing/src/testers.rs | 147 +++--
rust/sedona/src/record_batch_reader_provider.rs | 23 +-
48 files changed, 3195 insertions(+), 554 deletions(-)
create mode 100644
rust/sedona-spatial-join/src/evaluated_batch/evaluated_batch_stream/evaluate.rs
create mode 100644 rust/sedona-spatial-join/src/utils/arrow_utils.rs