You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2020/11/03 07:55:45 UTC

[lucene-solr] branch master updated (6a7131e -> 8bfbed8)

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

ivera pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 6a7131e  LUCENE-9319: Clean up package name conflicts for sandbox module (#2023)
     add 8bfbed8  LUCENE-9552: Adds a LatLonPoint query that accepts an array of LatLonGeometries (#1940)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   2 +
 .../document/LatLonDocValuesDistanceQuery.java     | 148 --------
 .../lucene/document/LatLonDocValuesField.java      |  28 +-
 ...va => LatLonDocValuesPointInGeometryQuery.java} |  49 +--
 .../org/apache/lucene/document/LatLonPoint.java    |  28 +-
 ...nQuery.java => LatLonPointInGeometryQuery.java} |  66 ++--
 .../document/LatLonShapeBoundingBoxQuery.java      |  32 +-
 .../src/java/org/apache/lucene/geo/Circle.java     |  10 +-
 .../org/apache/lucene/geo/GeoEncodingUtils.java    |  12 +-
 .../java/org/apache/lucene/geo/Rectangle2D.java    |  21 +-
 .../lucene/document/BaseLatLonShapeTestCase.java   |   4 +-
 .../apache/lucene/document/BaseShapeTestCase.java  |  31 +-
 .../document/TestLatLonPointShapeQueries.java      |  19 +-
 .../apache/lucene/document/TestLatLonShape.java    |   8 +-
 .../src/test/org/apache/lucene/geo/TestCircle.java |   6 +-
 .../lucene/search/TestLatLonDocValuesQueries.java  |  11 +-
 .../lucene/search/TestLatLonPointQueries.java      |   6 +
 .../apache/lucene/geo/BaseGeoPointTestCase.java    | 415 ++++++++++-----------
 .../java/org/apache/lucene/geo/GeoTestUtil.java    |   2 +-
 19 files changed, 376 insertions(+), 522 deletions(-)
 delete mode 100644 lucene/core/src/java/org/apache/lucene/document/LatLonDocValuesDistanceQuery.java
 rename lucene/core/src/java/org/apache/lucene/document/{LatLonDocValuesPointInPolygonQuery.java => LatLonDocValuesPointInGeometryQuery.java} (72%)
 rename lucene/core/src/java/org/apache/lucene/document/{LatLonPointInPolygonQuery.java => LatLonPointInGeometryQuery.java} (80%)