airborne12 commented on code in PR #19936: URL: https://github.com/apache/doris/pull/19936#discussion_r1203870723
########## be/src/olap/inverted_index_parser.h: ########## @@ -19,9 +19,30 @@ #include <map> #include <string> +#include <unordered_map> + +#include "util/spinlock.h" namespace doris { +enum class InvertedIndexParserType; +// column_name -> InvertedIndexParserType +using ParserTypeMap = std::unordered_map<std::string, InvertedIndexParserType>; + +class InvertedIndexParserMgr { Review Comment: rename to InvertedIndexContextMgr to adapt to future params. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org