You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by md...@apache.org on 2020/05/12 16:44:25 UTC

[lucene-solr] branch branch_8_5 updated (5acbf14 -> 6739c49)

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

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


    from 5acbf14  SOLR-14411: Fix Admin UI collection/core drop-downs placeholder text. Completes work started in SOLR-14359
     add 05ba52b  LUCENE-9350: Don't hold references to large automata on FuzzyQuery (#1467)
     add 094784f  LUCENE-9350: Add changes entry
     add 677ee79  SOLR-13190 Backport unit test
     add 6739c49  SOLR-14465: Solr query handling code catches FuzzyTermsException

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   5 +-
 .../lucene/search/FuzzyAutomatonBuilder.java       |  88 ++++++++++++
 .../java/org/apache/lucene/search/FuzzyQuery.java  |  58 ++------
 .../org/apache/lucene/search/FuzzyTermsEnum.java   | 151 ++++++++++++---------
 .../org/apache/lucene/search/MultiTermQuery.java   |   6 +-
 .../org/apache/lucene/search/TestFuzzyQuery.java   |  31 ++++-
 .../solr/handler/component/QueryComponent.java     |   9 +-
 .../org/apache/solr/search/FuzzySearchTest.java    |  67 +++++++++
 8 files changed, 293 insertions(+), 122 deletions(-)
 create mode 100644 lucene/core/src/java/org/apache/lucene/search/FuzzyAutomatonBuilder.java
 create mode 100644 solr/core/src/test/org/apache/solr/search/FuzzySearchTest.java