You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2020/02/24 08:49:31 UTC

[lucene-solr] branch solr10306-swappiness updated (affb362 -> 9752979)

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

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


    from affb362  Minor edits before push
     add cb68d7d  LUCENE-9232: add a script-hack check so that in case somebody upgrades the scripts automatically they'll know they need to add the hack.
     add 88dd1c3  LUCENE-9238: Add new XYPointField, queries and sorting capabilities (#1272)
     add 292bed0  SOLR-11035: (at least) 2 distinct failures possible when clients attempt searches during SolrCore reload
     add bc41f25  SOLR-14271: Delete CollectionsAPIAsyncDistributedZkTest.testAsyncIdBackCompat as that is no longer required (#1275)
     add c1c5d07  LUCENE-9240: Add full validation equivalent for precommit.
     add 312d6b2  LUCENE-9201: Add an equivalent to "check missing javadocs" task to gradle build
     add 9752979  Merge branch 'master' into solr10306-swappiness

No new revisions were added by this update.

Summary of changes:
 build.gradle                                       |    2 +
 ...ommit.gradle => gradlew-scripts-tweaked.gradle} |   43 +-
 gradle/validation/missing-docs-check.gradle        |  116 ++
 gradle/validation/precommit.gradle                 |    4 +-
 help/ant.txt                                       |    4 +-
 lucene/CHANGES.txt                                 |    3 +
 .../apache/lucene/document/XYDocValuesField.java   |  178 +++
 .../document/XYDocValuesPointInGeometryQuery.java  |  143 ++
 .../lucene/document/XYPointDistanceComparator.java |  207 +++
 .../org/apache/lucene/document/XYPointField.java   |  172 +++
 .../lucene/document/XYPointInGeometryQuery.java    |  227 ++++
 .../apache/lucene/document/XYPointSortField.java   |   96 ++
 .../lucene/search/TestXYDocValuesQueries.java      |   45 +
 .../lucene/search/TestXYPointDistanceSort.java     |  265 ++++
 .../apache/lucene/search/TestXYPointQueries.java   |   45 +
 .../org/apache/lucene/geo/BaseXYPointTestCase.java | 1424 ++++++++++++++++++++
 .../java}/org/apache/lucene/geo/ShapeTestUtil.java |   72 +-
 solr/CHANGES.txt                                   |    3 +
 .../apache/solr/cloud/DocValuesNotIndexedTest.java |    5 -
 .../apache/solr/cloud/ReindexCollectionTest.java   |   14 -
 .../CollectionsAPIAsyncDistributedZkTest.java      |   13 -
 .../src/java/org/apache/solr/SolrTestCaseJ4.java   |  123 --
 22 files changed, 3015 insertions(+), 189 deletions(-)
 copy gradle/validation/{precommit.gradle => gradlew-scripts-tweaked.gradle} (53%)
 create mode 100644 gradle/validation/missing-docs-check.gradle
 create mode 100644 lucene/core/src/java/org/apache/lucene/document/XYDocValuesField.java
 create mode 100644 lucene/core/src/java/org/apache/lucene/document/XYDocValuesPointInGeometryQuery.java
 create mode 100644 lucene/core/src/java/org/apache/lucene/document/XYPointDistanceComparator.java
 create mode 100644 lucene/core/src/java/org/apache/lucene/document/XYPointField.java
 create mode 100644 lucene/core/src/java/org/apache/lucene/document/XYPointInGeometryQuery.java
 create mode 100644 lucene/core/src/java/org/apache/lucene/document/XYPointSortField.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/search/TestXYDocValuesQueries.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/search/TestXYPointDistanceSort.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/search/TestXYPointQueries.java
 create mode 100644 lucene/test-framework/src/java/org/apache/lucene/geo/BaseXYPointTestCase.java
 rename lucene/{core/src/test => test-framework/src/java}/org/apache/lucene/geo/ShapeTestUtil.java (67%)