kirkrodrigues opened a new issue, #10849: URL: https://github.com/apache/pinot/issues/10849
A query like: `SELECT * FROM table WHERE col LIKE '%2\_2%'` gets translated to `SELECT * FROM table WHERE REGEXP_LIKE(col, '2\\.2')` Is this the right syntax for escaping SQL wildcards? If so, this issue looks to be because [`likeToRegexpLike`](https://github.com/apache/pinot/blob/master/pinot-common/src/main/java/org/apache/pinot/common/utils/RegexpPatternConverterUtils.java#L35) doesn't handle escaped wildcards. -- 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.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