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: [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]

Reply via email to