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

paleolimbot pushed a change to branch better-shape-index
in repository https://gitbox.apache.org/repos/asf/sedona-db.git


    omit 072fa883 distance benchmarks
    omit 76d389ec update to main
    omit e41614e6 add an array/array benchmark for tg
    omit 0f64fe0b more benchmarks
    omit 4a904215 submodule for now
    omit 5fdfced0 add a few cases we care about
    omit 4b325337 add benchmark
    omit cd85a8ee add some benchmarks
     add 99cca895 chore(deps): bump quinn-proto from 0.11.13 to 0.11.14 (#706)
     add 20808454 refactor(rust/sedona-schema): centralize SedonaType CRS 
helpers (#705)
     add d748e4c0 feat(sedona-gdal): add foundational wrapper utilities (#696)
     add 5b7b548a fix(rust): remove norun/ignore markers (#710)
     add cff68404 feat(rust/sedona-spatial-join) Making SpatialIndex a trait 
(#645)
     add e49dcc18 chore(deps): bump clap from 4.5.54 to 4.5.60 (#711)
     add edbd7084 feat(sedona-gdal): add geometry and spatial ref primitives 
(#695)
     add 175569d7 docs: Add PyPI download statistics badges to README and docs 
homepage (#723)
     add b66fa413 docs: Remove badges from docs homepage due to Apache CSP 
restrictions (#724)
     add 7a71e528 feat(c/libgpuspatial): Upgrade RAPIDS RMM to 25.12 (#718)
     add dc6c40aa chore(deps): bump lz4_flex from 0.12.0 to 0.12.1 (#713)
     add 38006908 chore(ci): Add round-robin reviewer auto-assignment (#720)
     add 346ab2ca feat(c/sedona-libgpuspatial): Fix synchronization bugs and 
improve logging (#721)
     add 4fcf9edf feat(c/sedona-libgpuspatial): Improve building robustness 
(#719)
     add 82c1bb05 feat(c/sedona-libgpuspatial): Change the interface of 
SpatialRefiner (#717)
     add c5a31d60 Add ST_Relate implementation using GEOS (#691)
     add 62f8376a perf(rust/sedona-spatial-join): Use row count first to decide 
join order (#725)
     add bc9535ab chore(deps): bump tar from 0.4.44 to 0.4.45 (#726)
     add b9c2316f chore(deps): bump rustls-webpki from 0.103.8 to 0.103.10 
(#727)
     add 8868018d chore(deps): bump actions/github-script from 7 to 8 (#728)
     add 697d0800 chore(deps): bump actions/upload-artifact from 4 to 7 (#729)
     add 47dd1573 chore(deps): bump actions/checkout from 4 to 6 (#730)
     add 25b47560 chore(deps): bump clap from 4.5.60 to 4.6.0 (#731)
     add 533316f6 add some benchmarks
     add 044972fd add benchmark
     add 2490d2fd add a few cases we care about
     add cabbe4e1 submodule for now
     add 80debff2 more benchmarks
     add f1407ffa add an array/array benchmark for tg
     add ffd86042 update to main
     add 057add4c distance benchmarks
     add 04a32d12 submodule

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   (072fa883)
            \
             N -- N -- N   refs/heads/better-shape-index (04a32d12)

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/reviewers.json                             |    1 +
 .github/workflows/assign-reviewer-write.yml        |  111 ++
 .github/workflows/assign-reviewer.yml              |   44 +
 Cargo.lock                                         |  148 +-
 README.md                                          |    3 +
 c/sedona-gdal/src/{errors.rs => config.rs}         |   38 +-
 c/sedona-gdal/src/cpl.rs                           |  690 +++++++
 c/sedona-gdal/src/dyn_load.rs                      |    5 +
 c/sedona-gdal/src/errors.rs                        |   26 +
 c/sedona-gdal/src/gdal_api.rs                      |   21 +-
 c/sedona-gdal/src/gdal_dyn_bindgen.rs              |   19 +
 c/sedona-gdal/src/geo_transform.rs                 |  152 ++
 c/sedona-gdal/src/lib.rs                           |    9 +
 .../src/lib.rs => c/sedona-gdal/src/raster.rs      |    2 +-
 c/sedona-gdal/src/raster/types.rs                  |  212 +++
 c/sedona-gdal/src/spatial_ref.rs                   |  292 +++
 .../src/lib.rs => c/sedona-gdal/src/vector.rs      |    2 +-
 c/sedona-gdal/src/vector/geometry.rs               |  238 +++
 c/sedona-gdal/src/vsi.rs                           |  292 +++
 c/sedona-geos/src/lib.rs                           |    2 +
 c/sedona-geos/src/register.rs                      |    1 +
 c/sedona-geos/src/{distance.rs => st_relate.rs}    |   73 +-
 c/sedona-libgpuspatial/build.rs                    |   55 +-
 .../libgpuspatial/CMakeLists.txt                   |    5 +
 .../libgpuspatial/cmake/RAPIDS.cmake               |    7 +-
 .../libgpuspatial/cmake/RAPIDS_VERSION             |    2 +-
 .../cmake/patches/rmm_race_condition.patch         |   17 +
 .../libgpuspatial/cmake/thirdparty/get_rmm.cmake   |   29 +
 .../include/gpuspatial/geom/polygon.hpp            |    1 +
 .../include/gpuspatial/gpuspatial_c.h              |   14 +-
 .../include/gpuspatial/index/rt_spatial_index.cuh  |   10 +-
 .../gpuspatial/refine/rt_spatial_refiner.cuh       |    9 +-
 .../include/gpuspatial/utils/gpu_timer.hpp         |   57 -
 .../include/gpuspatial/utils/stopwatch.hpp         |    5 +-
 .../libgpuspatial/src/gpuspatial_c.cc              |   38 +-
 .../libgpuspatial/src/memory_manager.cc            |   17 +-
 .../libgpuspatial/src/relate_engine.cu             |   19 +-
 .../libgpuspatial/src/rt_spatial_index.cu          |  129 +-
 .../libgpuspatial/src/rt_spatial_refiner.cu        |   77 +-
 .../libgpuspatial/test/c_wrapper_test.cc           |   10 +-
 c/sedona-libgpuspatial/src/lib.rs                  |   16 +-
 c/sedona-libgpuspatial/src/libgpuspatial.rs        |   26 +-
 c/sedona-s2geography/s2geography                   |    2 +-
 dev/release/rat_exclude_files.txt                  |    1 +
 docs/index.md                                      |    1 +
 .../sql/{st_coveredby.qmd => st_relate.qmd}        |   20 +-
 python/sedonadb/src/schema.rs                      |   31 +-
 python/sedonadb/tests/functions/test_predicates.py |   53 +
 rust/sedona-expr/src/item_crs.rs                   |    7 +-
 rust/sedona-functions/src/executor.rs              |    4 +-
 rust/sedona-geometry/src/transform.rs              |   17 +-
 rust/sedona-raster-functions/src/executor.rs       |   21 +-
 rust/sedona-schema/src/datatypes.rs                |   31 +
 rust/sedona-schema/src/matchers.rs                 |   16 +-
 rust/sedona-spatial-join/src/index.rs              |    7 +-
 .../src/index/build_side_collector.rs              |   23 +-
 .../{spatial_index.rs => default_spatial_index.rs} |  602 +++---
 ...builder.rs => default_spatial_index_builder.rs} |  176 +-
 .../src/index/partitioned_index_provider.rs        |  108 +-
 .../sedona-spatial-join/src/index/spatial_index.rs | 1937 +-------------------
 .../src/index/spatial_index_builder.rs             |  306 +---
 rust/sedona-spatial-join/src/lib.rs                |    1 -
 .../src/planner/physical_planner.rs                |   34 +-
 rust/sedona-spatial-join/src/prepare.rs            |   14 +-
 rust/sedona-spatial-join/src/stream.rs             |   15 +-
 .../tests/spatial_join_integration.rs              |  280 ++-
 rust/sedona-testing/src/create.rs                  |    8 +-
 rust/sedona-testing/src/testers.rs                 |    9 +-
 rust/sedona/src/context_builder.rs                 |    4 +-
 sedona-cli/Cargo.toml                              |    2 +-
 70 files changed, 3580 insertions(+), 3074 deletions(-)
 create mode 100644 .github/reviewers.json
 create mode 100644 .github/workflows/assign-reviewer-write.yml
 create mode 100644 .github/workflows/assign-reviewer.yml
 copy c/sedona-gdal/src/{errors.rs => config.rs} (58%)
 create mode 100644 c/sedona-gdal/src/cpl.rs
 create mode 100644 c/sedona-gdal/src/geo_transform.rs
 copy rust/sedona-pointcloud/src/lib.rs => c/sedona-gdal/src/raster.rs (98%)
 create mode 100644 c/sedona-gdal/src/raster/types.rs
 create mode 100644 c/sedona-gdal/src/spatial_ref.rs
 copy rust/sedona-pointcloud/src/lib.rs => c/sedona-gdal/src/vector.rs (97%)
 create mode 100644 c/sedona-gdal/src/vector/geometry.rs
 create mode 100644 c/sedona-gdal/src/vsi.rs
 copy c/sedona-geos/src/{distance.rs => st_relate.rs} (61%)
 create mode 100644 
c/sedona-libgpuspatial/libgpuspatial/cmake/patches/rmm_race_condition.patch
 delete mode 100644 
c/sedona-libgpuspatial/libgpuspatial/include/gpuspatial/utils/gpu_timer.hpp
 copy docs/reference/sql/{st_coveredby.qmd => st_relate.qmd} (70%)
 copy rust/sedona-spatial-join/src/index/{spatial_index.rs => 
default_spatial_index.rs} (87%)
 copy rust/sedona-spatial-join/src/index/{spatial_index_builder.rs => 
default_spatial_index_builder.rs} (84%)

Reply via email to