(&self, _identifier: &str)
| 3092 | |
| 3093 | impl Dialect for MsSqlDialect { |
| 3094 | fn identifier_quote_style(&self, _identifier: &str) -> Option<char> { |
| 3095 | Some('[') |
| 3096 | } |
| 3097 | |
| 3098 | fn string_literal_to_sql(&self, s: &str) -> Option<ast::Expr> { |
| 3099 | if !s.is_ascii() { |
no outgoing calls
no test coverage detected