itschrispeck commented on issue #14983: URL: https://github.com/apache/pinot/issues/14983#issuecomment-2638357998
Lucene's StandardAnalyzer (used by default) breaks on spaces and drops them to tokenize the input. Regex can only be applied on a single token. You may use `luceneAnalyzerClass` to use a different Analyzer that retains spaces, or leverage span queries if substring search is the only regex pattern needed (see: https://docs.pinot.apache.org/basics/indexing/text-search-support#phrase-search-with-wildcard-term-matching) -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
