This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
from d7530ac Revert "chore: add Scarf package to track usage (#35)"
add 63057d6 feat(rust/sedona-functions,c/sedona-geos): Add remaining
required sedona bench functions (#11)
No new revisions were added by this update.
Summary of changes:
c/sedona-geos/benches/geos-functions.rs | 2 +
c/sedona-geos/src/lib.rs | 1 +
c/sedona-geos/src/register.rs | 2 +
.../src/{st_centroid.rs => st_convexhull.rs} | 28 +-
python/sedonadb/tests/functions/test_aggregate.py | 117 +++++++
python/sedonadb/tests/functions/test_functions.py | 34 ++
rust/sedona-functions/benches/native-functions.rs | 29 +-
rust/sedona-functions/src/executor.rs | 10 +-
rust/sedona-functions/src/lib.rs | 2 +
rust/sedona-functions/src/register.rs | 2 +
rust/sedona-functions/src/sd_format.rs | 2 +-
rust/sedona-functions/src/st_collect.rs | 347 +++++++++++++++++++++
rust/sedona-functions/src/st_makeline.rs | 329 +++++++++++++++++++
rust/sedona-geometry/src/analyze.rs | 43 +--
rust/sedona-geometry/src/types.rs | 23 +-
rust/sedona-testing/src/benchmark_util.rs | 23 +-
16 files changed, 940 insertions(+), 54 deletions(-)
copy c/sedona-geos/src/{st_centroid.rs => st_convexhull.rs} (82%)
create mode 100644 python/sedonadb/tests/functions/test_aggregate.py
create mode 100644 rust/sedona-functions/src/st_collect.rs
create mode 100644 rust/sedona-functions/src/st_makeline.rs