This is an automated email from the ASF dual-hosted git repository.

imbruced pushed a change to branch add-sedona-deserializer
in repository https://gitbox.apache.org/repos/asf/sedona-db.git


    omit c46b6bf3 restructure files
    omit fd739ab3 restructure files
    omit b0e25812 add geometry to sedona binary conversion
    omit 1bf02f69 add geometry to sedona binary
    omit f72bcf86 add geometry to sedona binary
    omit 7179aa78 add sedona deserialization code
     add 37c30f36 feat(rust/sedona-raster-functions): Add RS_SRID and RS_CRS 
(#430)
     add b65a941c feat(rust/sedona-geo): ST_ConcaveHull Geo Implementation 
(#462)
     add e0e1d109 feat(sedona-expr,sedona-schema): Implement item-level CRS 
(#410)
     add 026413c6 add sedona SerDe

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   (c46b6bf3)
            \
             N -- N -- N   refs/heads/add-sedona-deserializer (026413c6)

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                                         |   4 +
 python/sedonadb/tests/functions/test_transforms.py |  48 +-
 rust/sedona-expr/Cargo.toml                        |   2 +
 rust/sedona-expr/src/item_crs.rs                   | 599 +++++++++++++++++++++
 rust/sedona-expr/src/lib.rs                        |   1 +
 rust/sedona-functions/Cargo.toml                   |   1 +
 rust/sedona-functions/src/st_from_sedona_spark.rs  | 312 +++--------
 rust/sedona-functions/src/st_setsrid.rs            | 332 +++++++++++-
 rust/sedona-functions/src/st_srid.rs               | 287 +++++++++-
 rust/sedona-functions/src/st_to_sedona_spark.rs    |   5 +-
 rust/sedona-geo/src/lib.rs                         |   1 +
 rust/sedona-geo/src/st_concavehull.rs              | 462 ++++++++++++++++
 rust/sedona-raster-functions/Cargo.toml            |   1 +
 .../benches/native-raster-functions.rs             |   3 +
 rust/sedona-raster-functions/src/executor.rs       |   8 +-
 rust/sedona-raster-functions/src/lib.rs            |   1 +
 rust/sedona-raster-functions/src/register.rs       |   2 +
 rust/sedona-raster-functions/src/rs_example.rs     |   2 +-
 rust/sedona-raster-functions/src/rs_srid.rs        | 264 +++++++++
 rust/sedona-schema/src/datatypes.rs                |  30 ++
 rust/sedona-schema/src/matchers.rs                 |  23 +
 rust/sedona-serde/src/deserialize.rs               |  11 +-
 rust/sedona-testing/src/create.rs                  |  71 ++-
 rust/sedona-testing/src/rasters.rs                 |   3 +-
 rust/sedona-testing/src/testers.rs                 |  18 +-
 rust/sedona/src/context.rs                         |   8 +-
 26 files changed, 2201 insertions(+), 298 deletions(-)
 create mode 100644 rust/sedona-expr/src/item_crs.rs
 create mode 100644 rust/sedona-geo/src/st_concavehull.rs
 create mode 100644 rust/sedona-raster-functions/src/rs_srid.rs

Reply via email to