iffyio commented on code in PR #2003: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2003#discussion_r2315622339
########## src/dialect/mod.rs: ########## @@ -476,6 +476,12 @@ pub trait Dialect: Debug + Any { false } + // Does the Dialect support concatenating of string literal + // Example: SELECT 'Hello ' "world" => SELECT 'Hello world' Review Comment: ```suggestion /// Returns true if the dialect supports concatenating of string literal /// Example: `SELECT 'Hello ' "world" => SELECT 'Hello world'` ``` -- 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