iffyio commented on code in PR #1735: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1735#discussion_r1966454048
########## tests/sqlparser_mysql.rs: ########## @@ -2530,6 +2530,16 @@ fn parse_rlike_and_regexp() { } } +#[test] +fn parse_like_with_escape() { + mysql().verified_only_select(r#"SELECT * FROM customer WHERE name LIKE 'a\%c'"#); Review Comment: I took a look at the comments and the tests but Im not sure I currently understood the behavior/problem being solved for. Figured here to try ask with a concrete example, given this test case with the string `'a\%c'` what was the previous vs current behavior was it the case that we failed to parse the string in the previous behavior or that it produced a different kind of output? -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org