xiaokang commented on code in PR #28704: URL: https://github.com/apache/doris/pull/28704#discussion_r1434717442
########## be/src/olap/rowset/segment_v2/inverted_index_writer.cpp: ########## @@ -192,6 +192,12 @@ class InvertedIndexColumnWriterImpl : public InvertedIndexColumnWriter { // ANALYSER_NOT_SET, ANALYSER_NONE use default SimpleAnalyzer _analyzer = std::make_unique<lucene::analysis::SimpleAnalyzer<char>>(); } + auto lowercase = get_parser_lowercase_from_properties(_index_meta->properties()); + if (lowercase == "true") { + _analyzer->set_lowercase(true); + } else if (lowercase == "false") { + _analyzer->set_lowercase(false); + } Review Comment: get, you can add a comment here -- 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