dssysolyatin commented on PR #4460: URL: https://github.com/apache/calcite/pull/4460#issuecomment-3055534923
Have you taken escaped % into consideration? For example: ``` SELECT 'a%%bc' LIKE 'a\%\%%' ``` By your logic, the last %% will be shortened, which will give the wrong result, right? ``` SELECT 'a%%bc' LIKE 'a\%\%' ``` -- 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...@calcite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org