mirror of
https://github.com/typesense/typesense.git
synced 2025-05-21 06:02:26 +08:00
Fix crash in filter_result_iterator_t::compute_result
.
This commit is contained in:
parent
a53f18bb51
commit
df9f8fd7de
@ -1671,6 +1671,11 @@ void filter_result_iterator_t::add_phrase_ids(filter_result_iterator_t*& filter_
|
||||
}
|
||||
|
||||
void filter_result_iterator_t::compute_result() {
|
||||
if (filter_node == nullptr) {
|
||||
LOG(INFO) << "filter_node is null";
|
||||
return;
|
||||
}
|
||||
|
||||
if (filter_node->isOperator) {
|
||||
left_it->compute_result();
|
||||
right_it->compute_result();
|
||||
|
Loading…
x
Reference in New Issue
Block a user