You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2021/10/12 08:34:06 UTC

[lucene] branch main updated (f67dec1 -> ca073c9)

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

romseygeek pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git.


    from f67dec1  LUCENE-10164: lucene/replicator should only have jetty as a test dependency (#373)
     add ca073c9  LUCENE-10140: Correct minimizing iterator sub-matches (#370)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   3 +
 .../queries/intervals/BlockIntervalsSource.java    |   2 +-
 .../queries/intervals/CachingMatchesIterator.java  |  37 ++++---
 .../intervals/ConjunctionIntervalsSource.java      | 109 +--------------------
 ...erator.java => ConjunctionMatchesIterator.java} |  70 ++++++++-----
 .../intervals/ContainedByIntervalsSource.java      |   2 +-
 .../intervals/ContainingIntervalsSource.java       |   2 +-
 .../MinimizingConjunctionIntervalsSource.java      | 105 ++++++++++++++++++++
 .../MinimumShouldMatchIntervalsSource.java         |  25 +++--
 .../queries/intervals/OrderedIntervalsSource.java  |  13 ++-
 .../intervals/OverlappingIntervalsSource.java      |   2 +-
 .../intervals/RepeatingIntervalsSource.java        |   2 +-
 .../intervals/UnorderedIntervalsSource.java        |  13 ++-
 .../queries/intervals/TestComplexMatches.java      |  69 +++++++++++++
 14 files changed, 276 insertions(+), 178 deletions(-)
 rename lucene/queries/src/java/org/apache/lucene/queries/intervals/{MinimizingConjunctionMatchesIterator.java => ConjunctionMatchesIterator.java} (63%)
 create mode 100644 lucene/queries/src/java/org/apache/lucene/queries/intervals/MinimizingConjunctionIntervalsSource.java
 create mode 100644 lucene/queries/src/test/org/apache/lucene/queries/intervals/TestComplexMatches.java