summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2022-03-18 14:26:46 +0100
committerJon Marius Venstad <venstad@gmail.com>2022-03-18 14:26:46 +0100
commit72fc31a9364cd26c03d079cb83fff47f5376db45 (patch)
tree26088b64feff76547bba433e1832132ed71ac2e2 /searchlib
parentbb53b8143d0ecda7856046655b4088230a4a562d (diff)
Reserve slot for MultiTermItem in serialisation format table
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/parsequery/parse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/parsequery/parse.h b/searchlib/src/vespa/searchlib/parsequery/parse.h
index 7db9f0e43ea..c9b7940b887 100644
--- a/searchlib/src/vespa/searchlib/parsequery/parse.h
+++ b/searchlib/src/vespa/searchlib/parsequery/parse.h
@@ -56,12 +56,12 @@ public:
ITEM_GEO_LOCATION_TERM = 27,
ITEM_TRUE = 28,
ITEM_FALSE = 29,
- ITEM_MAX = 30, // Indicates how long tables must be.
+ ITEM_MULTI_TERM = 30,
ITEM_UNDEF = 31,
};
/** A tag identifying the origin of this query node.
- * Note that descendants may origin from elsewhere.
+ * Note that descendants may originate from elsewhere.
* If changes necessary:
* NB! Append at end of list - corresponding type
* used in Juniper and updates of these two types must be synchronized.