This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 241d14cdb7a [Enhancement](inverted index) make compiler happy (#32332) 241d14cdb7a is described below commit 241d14cdb7acea59d793ef9b1cc5730958a9d7af Author: airborne12 <airborn...@gmail.com> AuthorDate: Sun Mar 17 08:13:52 2024 +0800 [Enhancement](inverted index) make compiler happy (#32332) --- be/src/olap/rowset/segment_v2/inverted_index_reader.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/be/src/olap/rowset/segment_v2/inverted_index_reader.cpp b/be/src/olap/rowset/segment_v2/inverted_index_reader.cpp index 769886d2e7c..11c53bbabc0 100644 --- a/be/src/olap/rowset/segment_v2/inverted_index_reader.cpp +++ b/be/src/olap/rowset/segment_v2/inverted_index_reader.cpp @@ -1175,4 +1175,9 @@ const std::map<string, string>& InvertedIndexIterator::get_index_properties() co return _reader->get_index_properties(); } +template class InvertedIndexVisitor<InvertedIndexQueryType::LESS_THAN_QUERY>; +template class InvertedIndexVisitor<InvertedIndexQueryType::EQUAL_QUERY>; +template class InvertedIndexVisitor<InvertedIndexQueryType::LESS_EQUAL_QUERY>; +template class InvertedIndexVisitor<InvertedIndexQueryType::GREATER_THAN_QUERY>; +template class InvertedIndexVisitor<InvertedIndexQueryType::GREATER_EQUAL_QUERY>; } // namespace doris::segment_v2 --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org