From d0069fe2d3d4c99d048a480b2c9dce31633a57fd Mon Sep 17 00:00:00 2001 From: Harpreet Sangar Date: Fri, 27 Jan 2023 19:58:06 +0530 Subject: [PATCH] Add `Index::adaptive_filter`. --- src/index.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.cpp b/src/index.cpp index 6592b87b..e88badc0 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -1958,6 +1958,7 @@ Option Index::rearrange_filter_tree(filter_node_t* const root, if (root == nullptr) { return Option(true); } + if (root->isOperator) { uint32_t l_filter_ids_length = 0; if (root->left != nullptr) {