Redshift only supports CONCAT with two elements, the docs recommend to use the || operator for more than two elements: https://docs.aws.amazon.com/redshift/latest/dg/r_CONCAT.html
(&self)
| 437 | // Redshift only supports CONCAT with two elements, the docs recommend to use the || operator |
| 438 | // for more than two elements: https://docs.aws.amazon.com/redshift/latest/dg/r_CONCAT.html |
| 439 | fn has_concat_function(&self) -> bool { |
| 440 | false |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | impl DialectHandler for GlareDbDialect { |