rmuir commented on issue #13271: URL: https://github.com/apache/lucene/issues/13271#issuecomment-2038258715
I narrowed the fail down so far a bit to just this chain: ``` new Analyzer() { @Override protected TokenStreamComponents createComponents(String fieldName) { Tokenizer t = new ThaiTokenizer(); TokenStream stream = new ShingleFilter(t, "fg"); stream = new FixedShingleFilter(stream, 3, "b", " "); return new TokenStreamComponents(t, stream); } }; ``` This is nice as it involves no charfilter at all so we know ICU isn't involved. -- 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: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org