(&self)
| 368 | |
| 369 | impl DialectHandler for RedshiftDialect { |
| 370 | fn ident_quoting_style(&self) -> IdentQuotingStyle { |
| 371 | // Use conditional quoting with dialect-specific keywords |
| 372 | IdentQuotingStyle::ConditionallyQuoted |
| 373 | } |
| 374 | |
| 375 | fn interval_quoting_style(&self, dtf: &DateTimeField) -> IntervalQuotingStyle { |
| 376 | if matches!(dtf, DateTimeField::Week(_) | DateTimeField::Weeks) { |
no outgoing calls
no test coverage detected