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 17302072 chore(deps): bump the datafusion-arrow-parquet group with 18
updates
add c38dbc68 feat(r/sedonadb): Add basic DataFrame API with `sd_select()`,
`sd_transmute()`, and `sd_filter()` (#499)
add 47f7beec feat(rust/sedona-proj): Let ST_Transform() handle 3D
coordinates (#544)
add d7b31fbf chore(deps): bump glam from 0.30.10 to 0.31.0 (#550)
add e31d5540 chore(rust/sedona-spatial-join): Integrate bounding box
sampler and spilling support into build side collector (#542)
add b38df574 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 (17302072)
\
N -- N -- N
refs/heads/dependabot/cargo/datafusion-arrow-parquet-c355afec92 (b38df574)
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 | 5 +-
Cargo.toml | 3 +-
c/sedona-proj/src/proj.rs | 11 +
c/sedona-proj/src/transform.rs | 12 +
python/sedonadb/tests/functions/test_transforms.py | 10 +
r/sedonadb/NAMESPACE | 3 +
r/sedonadb/R/000-wrappers.R | 22 ++
r/sedonadb/R/dataframe.R | 90 ++++-
r/sedonadb/R/expression.R | 1 +
r/sedonadb/man/sd_compute.Rd | 2 +-
r/sedonadb/man/sd_count.Rd | 2 +-
r/sedonadb/man/sd_filter.Rd | 25 ++
r/sedonadb/man/sd_preview.Rd | 2 +-
r/sedonadb/man/sd_select.Rd | 23 ++
r/sedonadb/man/sd_to_view.Rd | 2 +-
r/sedonadb/man/sd_transmute.Rd | 26 ++
r/sedonadb/man/sd_write_parquet.Rd | 2 +-
r/sedonadb/src/init.c | 14 +
r/sedonadb/src/rust/api.h | 2 +
r/sedonadb/src/rust/src/dataframe.rs | 19 +
r/sedonadb/src/rust/src/expression.rs | 4 +-
r/sedonadb/tests/testthat/test-dataframe.R | 68 ++++
rust/sedona-common/src/option.rs | 97 +++++
rust/sedona-geometry/src/bounding_box.rs | 15 +
rust/sedona-spatial-join/Cargo.toml | 1 +
rust/sedona-spatial-join/src/build_index.rs | 28 +-
rust/sedona-spatial-join/src/exec.rs | 22 +-
.../src/index/build_side_collector.rs | 431 +++++++++++++++++++--
rust/sedona-spatial-join/src/optimizer.rs | 20 +-
29 files changed, 906 insertions(+), 56 deletions(-)
create mode 100644 r/sedonadb/man/sd_filter.Rd
create mode 100644 r/sedonadb/man/sd_select.Rd
create mode 100644 r/sedonadb/man/sd_transmute.Rd