summaryrefslogtreecommitdiffstats
path: root/searchlib/src
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2022-03-23 13:23:59 +0100
committerGitHub <noreply@github.com>2022-03-23 13:23:59 +0100
commitf74644994ef7520c18e29e2c6496d3f0dd468427 (patch)
treed9c3a7be5ea7d52c05291c47ce31034b5e6db6c3 /searchlib/src
parentc4860985003377b22ec033636551130a70f97eb5 (diff)
parent1a182ea3227391da68130c3e4d2e5932fdad33ed (diff)
Merge pull request #21771 from vespa-engine/jonmv/multi-range-item
Use 7 inste4ad ofo 30 for MultiTermItem
Diffstat (limited to 'searchlib/src')
-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 c9b7940b887..34ea692c370 100644
--- a/searchlib/src/vespa/searchlib/parsequery/parse.h
+++ b/searchlib/src/vespa/searchlib/parsequery/parse.h
@@ -33,7 +33,7 @@ public:
ITEM_TERM = 4,
ITEM_NUMTERM = 5,
ITEM_PHRASE = 6,
- /* removed: ITEM_PAREN = 7, */
+ ITEM_MULTI_TERM = 7,
ITEM_PREFIXTERM = 8,
ITEM_SUBSTRINGTERM = 9,
ITEM_ANY = 10,
@@ -56,7 +56,7 @@ public:
ITEM_GEO_LOCATION_TERM = 27,
ITEM_TRUE = 28,
ITEM_FALSE = 29,
- ITEM_MULTI_TERM = 30,
+ ITEM_MAX = 30, // Indicates how long tables must be.
ITEM_UNDEF = 31,
};