summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-09-01 09:12:51 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-09-01 09:12:51 +0200
commitfb9b1630ce42ebbe3c8f80349a0151c17934fc5a (patch)
tree03cfed2362b14bf0daecd884eb0925ecbf1af5ef /searchlib
parentf4f22e37f19797fa83ea1bc65efc4fe38cf4c1f0 (diff)
I guess the 'fast-search' hint is better than the 'filter' hint.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/imported_search_context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/imported_search_context.cpp b/searchlib/src/vespa/searchlib/attribute/imported_search_context.cpp
index 469a6e19659..0e19c814ebf 100644
--- a/searchlib/src/vespa/searchlib/attribute/imported_search_context.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/imported_search_context.cpp
@@ -179,7 +179,7 @@ void ImportedSearchContext::fetchPostings(bool strict) {
assert(!_fetchPostingsDone);
_fetchPostingsDone = true;
_target_search_context->fetchPostings(strict);
- if (strict || _target_attribute.getConfig().getIsFilter()) {
+ if (strict || _target_attribute.getConfig().fastSearch()) {
makeMergedPostings(_target_attribute.getConfig().getIsFilter());
}
}