Search: When searching against a type with a dfs search type, dfs is ignored, closes #1546.
This commit is contained in:
parent
f74256afcd
commit
cb4c249a65
|
@ -127,16 +127,26 @@ public class HighlightPhase implements FetchSubPhase {
|
||||||
// QueryScorer uses WeightedSpanTermExtractor to extract terms, but we can't really plug into
|
// QueryScorer uses WeightedSpanTermExtractor to extract terms, but we can't really plug into
|
||||||
// it, so, we hack here (and really only support top level queries)
|
// it, so, we hack here (and really only support top level queries)
|
||||||
Query query = context.parsedQuery().query();
|
Query query = context.parsedQuery().query();
|
||||||
|
while (true) {
|
||||||
|
boolean extracted = false;
|
||||||
if (query instanceof FunctionScoreQuery) {
|
if (query instanceof FunctionScoreQuery) {
|
||||||
query = ((FunctionScoreQuery) query).getSubQuery();
|
query = ((FunctionScoreQuery) query).getSubQuery();
|
||||||
|
extracted = true;
|
||||||
} else if (query instanceof FiltersFunctionScoreQuery) {
|
} else if (query instanceof FiltersFunctionScoreQuery) {
|
||||||
query = ((FiltersFunctionScoreQuery) query).getSubQuery();
|
query = ((FiltersFunctionScoreQuery) query).getSubQuery();
|
||||||
|
extracted = true;
|
||||||
} else if (query instanceof ConstantScoreQuery) {
|
} else if (query instanceof ConstantScoreQuery) {
|
||||||
ConstantScoreQuery q = (ConstantScoreQuery) query;
|
ConstantScoreQuery q = (ConstantScoreQuery) query;
|
||||||
if (q.getQuery() != null) {
|
if (q.getQuery() != null) {
|
||||||
query = q.getQuery();
|
query = q.getQuery();
|
||||||
|
extracted = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!extracted) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
QueryScorer queryScorer = new QueryScorer(query, null);
|
QueryScorer queryScorer = new QueryScorer(query, null);
|
||||||
queryScorer.setExpandMultiTermQuery(true);
|
queryScorer.setExpandMultiTermQuery(true);
|
||||||
Fragmenter fragmenter;
|
Fragmenter fragmenter;
|
||||||
|
|
|
@ -81,6 +81,10 @@ public class QueryPhase implements SearchPhase {
|
||||||
if (context.queryBoost() != 1.0f) {
|
if (context.queryBoost() != 1.0f) {
|
||||||
context.parsedQuery(new ParsedQuery(new FunctionScoreQuery(context.query(), new BoostScoreFunction(context.queryBoost())), context.parsedQuery()));
|
context.parsedQuery(new ParsedQuery(new FunctionScoreQuery(context.query(), new BoostScoreFunction(context.queryBoost())), context.parsedQuery()));
|
||||||
}
|
}
|
||||||
|
Filter searchFilter = context.mapperService().searchFilter(context.types());
|
||||||
|
if (searchFilter != null) {
|
||||||
|
context.parsedQuery(new ParsedQuery(new FilteredQuery(context.query(), context.filterCache().cache(searchFilter)), context.parsedQuery()));
|
||||||
|
}
|
||||||
facetPhase.preProcess(context);
|
facetPhase.preProcess(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -165,10 +169,6 @@ public class QueryPhase implements SearchPhase {
|
||||||
searchContext.queryResult().size(searchContext.size());
|
searchContext.queryResult().size(searchContext.size());
|
||||||
|
|
||||||
Query query = searchContext.query();
|
Query query = searchContext.query();
|
||||||
Filter searchFilter = searchContext.mapperService().searchFilter(searchContext.types());
|
|
||||||
if (searchFilter != null) {
|
|
||||||
query = new FilteredQuery(query, searchContext.filterCache().cache(searchFilter));
|
|
||||||
}
|
|
||||||
|
|
||||||
TopDocs topDocs;
|
TopDocs topDocs;
|
||||||
int numDocs = searchContext.from() + searchContext.size();
|
int numDocs = searchContext.from() + searchContext.size();
|
||||||
|
|
Loading…
Reference in New Issue