You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2019/08/19 08:57:50 UTC

[lucene-solr] branch master updated (f5856ef -> 27ee4ae)

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

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


    from f5856ef  SOLR-13701: Fixed JWTAuthPlugin to update metrics prior to continuing w/other filters or returning error
     new 94c76c7  LUCENE-8769: Introduce Range Query Type With Multiple Ranges
     new 3fb6a4d  Update TODO comments
     new 95d9950  Add CHANGES entry
     new 1cdcd0c  Merge branch 'master' into new_rangetypes_or
     new 6520b7d  Remove redundant CHANGES entry
     new 27ee4ae  Merge pull request #794 from atris/new_rangetypes_or

The 32221 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lucene/CHANGES.txt                                 |   2 +
 .../org/apache/lucene/document/DoublePoint.java    |   9 +-
 .../org/apache/lucene/document/FloatPoint.java     |   9 +-
 .../java/org/apache/lucene/document/IntPoint.java  |   9 +-
 .../java/org/apache/lucene/document/LongPoint.java |   9 +-
 .../document/DoublePointMultiRangeBuilder.java     |  54 ++
 .../document/FloatPointMultiRangeBuilder.java      |  55 ++
 .../lucene/document/IntPointMultiRangeBuilder.java |  53 ++
 .../document/LongPointMultiRangeBuilder.java       |  53 ++
 .../org/apache/lucene/search/MultiRangeQuery.java  | 389 ++++++++++++++
 .../lucene/search/TestMultiRangeQueries.java       | 590 +++++++++++++++++++++
 11 files changed, 1224 insertions(+), 8 deletions(-)
 create mode 100644 lucene/sandbox/src/java/org/apache/lucene/document/DoublePointMultiRangeBuilder.java
 create mode 100644 lucene/sandbox/src/java/org/apache/lucene/document/FloatPointMultiRangeBuilder.java
 create mode 100644 lucene/sandbox/src/java/org/apache/lucene/document/IntPointMultiRangeBuilder.java
 create mode 100644 lucene/sandbox/src/java/org/apache/lucene/document/LongPointMultiRangeBuilder.java
 create mode 100644 lucene/sandbox/src/java/org/apache/lucene/search/MultiRangeQuery.java
 create mode 100644 lucene/sandbox/src/test/org/apache/lucene/search/TestMultiRangeQueries.java