|
a/src/query/docseqdb.cpp |
|
b/src/query/docseqdb.cpp |
|
... |
|
... |
92 |
if (vpabs.empty()) {
|
92 |
if (vpabs.empty()) {
|
93 |
return true;
|
93 |
return true;
|
94 |
}
|
94 |
}
|
95 |
|
95 |
|
96 |
// If the list was probably truncated, indicate it.
|
96 |
// If the list was probably truncated, indicate it.
|
97 |
if (ret | Rcl::ABSRES_TRUNC) {
|
97 |
if (ret & Rcl::ABSRES_TRUNC) {
|
98 |
vpabs.push_back(Rcl::Snippet(-1, cstr_mre));
|
98 |
vpabs.push_back(Rcl::Snippet(-1, cstr_mre));
|
99 |
}
|
99 |
}
|
100 |
if (ret | Rcl::ABSRES_TERMMISS) {
|
100 |
if (ret & Rcl::ABSRES_TERMMISS) {
|
101 |
vpabs.insert(vpabs.begin(),
|
101 |
vpabs.insert(vpabs.begin(),
|
102 |
Rcl::Snippet(-1, "(Words missing in snippets)"));
|
102 |
Rcl::Snippet(-1, "(Words missing in snippets)"));
|
103 |
}
|
103 |
}
|
104 |
|
104 |
|
105 |
return true;
|
105 |
return true;
|