xitep commented on code in PR #1979: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1979#discussion_r2242388958
########## src/dialect/mod.rs: ########## @@ -841,6 +841,12 @@ pub trait Dialect: Debug + Any { false } + /// Returns true if this dialect allow colon placeholders + /// e.g. `SELECT :var` (JPA named parameters) + fn supports_colon_placeholder(&self) -> bool { + false + } Review Comment: wrt ... ``` DollarEnclosed { count: usize } ``` i'm seeing "$$foo$$" being treated as a "double quoted string", not as a placeholder. if `dialect.supports_dollar_placeholder() == true)` then `$...` is considered a placeholder, but the dollars at the start and end don't have to be balanced. this make the `DollarEnclosed` variant essentially void. -- 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