jackluo923 commented on code in PR #13003: URL: https://github.com/apache/pinot/pull/13003#discussion_r1698835184
########## pinot-segment-local/src/test/java/org/apache/pinot/segment/local/realtime/impl/invertedindex/LuceneMutableTextIndexTest.java: ########## @@ -55,13 +163,15 @@ private String[][] getRepeatedData() { }; } - @BeforeClass - public void setUp() - throws Exception { - TextIndexConfig config = - new TextIndexConfig(false, null, null, false, false, null, null, true, 500, null, false); - _realtimeLuceneTextIndex = - new RealtimeLuceneTextIndex(TEXT_COLUMN_NAME, INDEX_DIR, "fooBar", config); + private void configureIndex(String analyzerClass, String analyzerClassArgs, List<String> analyzerClassArgTypes, + String queryParserClass) { + TextIndexConfig config = new TextIndexConfig(false, null, null, false, false, null, null, true, 500, + analyzerClass, analyzerClassArgs, analyzerClassArgTypes, queryParserClass, false); Review Comment: done -- 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...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org