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
from f72bcf86 add geometry to sedona binary
add 1bf02f69 add geometry to sedona binary
add b0e25812 add geometry to sedona binary conversion
add fd739ab3 restructure files
add c46b6bf3 restructure files
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 2 +
rust/sedona-functions/src/lib.rs | 1 +
rust/sedona-functions/src/register.rs | 1 +
rust/sedona-functions/src/st_to_sedona_spark.rs | 236 ++++++++++++++++++++++++
rust/sedona-serde/Cargo.toml | 2 +
rust/sedona-serde/src/deserialize.rs | 34 ++--
rust/sedona-serde/src/lib.rs | 1 +
rust/sedona-serde/src/linestring.rs | 68 ++++++-
rust/sedona-serde/src/point.rs | 58 +++++-
rust/sedona-serde/src/polygon.rs | 96 +++++++++-
rust/sedona-serde/src/serialize.rs | 102 ++++++++++
rust/sedona/src/context.rs | 70 +++++++
12 files changed, 647 insertions(+), 24 deletions(-)
create mode 100644 rust/sedona-functions/src/st_to_sedona_spark.rs
create mode 100644 rust/sedona-serde/src/serialize.rs