aboutsummaryrefslogtreecommitdiffstats
path: root/searchcorespi
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2021-10-18 13:53:55 +0000
committerArne H Juul <arnej@yahooinc.com>2021-10-18 13:55:00 +0000
commit0c76851a13f75fdca3f859ea6135b29e2179656f (patch)
treea5ea1fe5d97bfb8e86d5ebad850ae6f90294477d /searchcorespi
parenta6784673e65b55a7812d208c06f76ad903b81cab (diff)
add ITEM_TRUE and ITEM_FALSE query nodes
Diffstat (limited to 'searchcorespi')
-rw-r--r--searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp b/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
index 5de0a8cb69d..9cad48a8058 100644
--- a/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
+++ b/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
@@ -203,6 +203,8 @@ private:
void visit(PredicateQuery &n) override { visitTerm(n); }
void visit(RegExpTerm &n) override { visitTerm(n); }
void visit(NearestNeighborTerm &n) override { visitTerm(n); }
+ void visit(TrueQueryNode &) override {}
+ void visit(FalseQueryNode &) override {}
public:
CreateBlueprintVisitor(const IIndexCollection &indexes,