mirror of https://github.com/apache/lucene.git
SOLR-11349: Rename ResponseBuilder's getQueryCommand to createQueryCommand.
This commit is contained in:
parent
5a26381424
commit
d39751a754
|
@ -268,6 +268,8 @@ Other Changes
|
|||
|
||||
* SOLR-11933: Make DIH UI page safer by not default checking the clean checkbox (Eric Pugh via Tomás Fernández Löbbe)
|
||||
|
||||
* SOLR-11349: Rename ResponseBuilder's getQueryCommand to createQueryCommand. (Christine Poerschke)
|
||||
|
||||
================== 7.2.1 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||
|
|
|
@ -337,7 +337,7 @@ public class QueryComponent extends SearchComponent
|
|||
CursorMarkParams.CURSOR_MARK_PARAM + " and " + CommonParams.TIME_ALLOWED);
|
||||
}
|
||||
|
||||
QueryCommand cmd = rb.getQueryCommand();
|
||||
QueryCommand cmd = rb.createQueryCommand();
|
||||
cmd.setTimeAllowed(timeAllowed);
|
||||
|
||||
req.getContext().put(SolrIndexSearcher.STATS_SOURCE, statsCache.get(req));
|
||||
|
|
|
@ -421,11 +421,16 @@ public class ResponseBuilder
|
|||
}
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public QueryCommand getQueryCommand() {
|
||||
return createQueryCommand();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a SolrIndexSearcher.QueryCommand from this
|
||||
* ResponseBuilder. TimeAllowed is left unset.
|
||||
*/
|
||||
public QueryCommand getQueryCommand() {
|
||||
public QueryCommand createQueryCommand() {
|
||||
QueryCommand cmd = new QueryCommand();
|
||||
cmd.setQuery(wrap(getQuery()))
|
||||
.setFilterList(getFilters())
|
||||
|
|
|
@ -259,7 +259,7 @@ public class SimpleFacets {
|
|||
// get the new base docset for this facet
|
||||
DocSet base = searcher.getDocSet(qlist);
|
||||
if (rb.grouping() && rb.getGroupingSpec().isTruncateGroups()) {
|
||||
Grouping grouping = new Grouping(searcher, null, rb.getQueryCommand(), false, 0, false);
|
||||
Grouping grouping = new Grouping(searcher, null, rb.createQueryCommand(), false, 0, false);
|
||||
grouping.setWithinGroupSort(rb.getGroupingSpec().getSortWithinGroup());
|
||||
if (rb.getGroupingSpec().getFields().length > 0) {
|
||||
grouping.addFieldCommand(rb.getGroupingSpec().getFields()[0], req);
|
||||
|
|
Loading…
Reference in New Issue