This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/arrow-parquet-a72645d6ac
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
discard 986f525a chore(deps): bump the arrow-parquet group with 8 updates
add 00c18cdd chore(ci): ci checks support cargo fmt (#354)
add 133e1adf chore: update geo-index to use version 0.3.2 (#355)
add ed81b0ec feat(c/sedona-geos): Implement st_polygonize for scalar
inputs (#328)
add 62776739 feat(python/sedonadb): Implement GDAL/OGR formats via pyogrio
(#283)
add e6e72d07 chore(deps): bump the arrow-parquet group with 8 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 (986f525a)
\
N -- N -- N refs/heads/dependabot/cargo/arrow-parquet-a72645d6ac
(e6e72d07)
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:
.github/workflows/rust.yml | 6 +-
Cargo.lock | 10 +-
Cargo.toml | 6 +-
c/sedona-geos/src/lib.rs | 1 +
c/sedona-geos/src/register.rs | 2 +
c/sedona-geos/src/st_polygonize.rs | 147 ++++++++
python/sedonadb/Cargo.toml | 2 +
python/sedonadb/python/sedonadb/context.py | 68 ++++
python/sedonadb/python/sedonadb/datasource.py | 194 +++++++++++
python/sedonadb/src/context.rs | 21 ++
python/sedonadb/src/datasource.rs | 388 ++++++++++++++++++++++
python/sedonadb/src/lib.rs | 3 +
python/sedonadb/src/schema.rs | 15 +
python/sedonadb/tests/functions/test_functions.py | 47 +++
python/sedonadb/tests/test_datasource.py | 135 ++++++++
rust/sedona-datasource/Cargo.toml | 2 +
rust/sedona-datasource/src/format.rs | 6 +-
rust/sedona-datasource/src/lib.rs | 1 +
rust/sedona-datasource/src/spec.rs | 156 ++++++++-
rust/sedona-datasource/src/utility.rs | 145 ++++++++
rust/sedona-expr/src/spatial_filter.rs | 96 +++++-
rust/sedona-geometry/src/bounding_box.rs | 71 +++-
rust/sedona-geometry/src/interval.rs | 270 ++++++++++++++-
rust/sedona-spatial-join/src/index/knn_adapter.rs | 2 +-
rust/sedona/Cargo.toml | 1 +
rust/sedona/src/context.rs | 167 +++++++++-
26 files changed, 1926 insertions(+), 36 deletions(-)
create mode 100644 c/sedona-geos/src/st_polygonize.rs
create mode 100644 python/sedonadb/python/sedonadb/datasource.py
create mode 100644 python/sedonadb/src/datasource.rs
create mode 100644 python/sedonadb/tests/test_datasource.py
create mode 100644 rust/sedona-datasource/src/utility.rs