aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2024-03-20 11:10:54 +0100
committerTor Egge <Tor.Egge@online.no>2024-03-20 11:10:54 +0100
commitcaed98d39b292eece8e950fad9b0662d1e2a04d4 (patch)
tree129b8af0dfb683d031e47cef086fe673e0bb09f7 /searchlib/src/vespa/searchlib/query/streaming/queryterm.h
parent7938460dd3b3d72ec1900febe29c1a94db964648 (diff)
Reapply add virtual fields to index environment for streaming mode.
Diffstat (limited to 'searchlib/src/vespa/searchlib/query/streaming/queryterm.h')
-rw-r--r--searchlib/src/vespa/searchlib/query/streaming/queryterm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/searchlib/src/vespa/searchlib/query/streaming/queryterm.h b/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
index 78b0a1fea7d..05b12804d52 100644
--- a/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
+++ b/searchlib/src/vespa/searchlib/query/streaming/queryterm.h
@@ -108,6 +108,7 @@ public:
virtual RegexpTerm* as_regexp_term() noexcept;
virtual FuzzyTerm* as_fuzzy_term() noexcept;
virtual const EquivQueryNode* as_equiv_query_node() const noexcept;
+ virtual bool is_same_element_query_node() const noexcept;
virtual void unpack_match_data(uint32_t docid, const fef::ITermData& td, fef::MatchData& match_data, const fef::IIndexEnvironment& index_env);
protected:
template <typename HitListType>