aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-06-10 08:44:55 +0000
committerArne Juul <arnej@verizonmedia.com>2020-06-10 08:44:55 +0000
commita3a7ebbe14794d60eb5bd93c26ae22f61d671c18 (patch)
tree2583871fe0e3b9af46cd188abfc2c84f4ec8b0c3 /searchcore
parentfbc3461127b6edf235e11e231fdbde0b250dd4f4 (diff)
redo fetchPostings for completeness
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/query.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/matching/query.cpp b/searchcore/src/vespa/searchcore/proton/matching/query.cpp
index 8fd686e235d..5213a2b9230 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/query.cpp
+++ b/searchcore/src/vespa/searchcore/proton/matching/query.cpp
@@ -213,6 +213,8 @@ Query::handle_global_filters(uint32_t docid_limit)
// optimized order may change after accounting for global filter:
_blueprint = Blueprint::optimize(std::move(_blueprint));
LOG(debug, "blueprint after handle_global_filters:\n%s\n", _blueprint->asString().c_str());
+ // strictness may change if optimized order changed:
+ fetchPostings();
}
}