We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a783766 commit d22578eCopy full SHA for d22578e
1 file changed
src/dialect/redshift.rs
@@ -86,7 +86,7 @@ impl Dialect for RedshiftSqlDialect {
86
}
87
88
fn is_identifier_part(&self, ch: char) -> bool {
89
- // Extends Postgres dialect with sharp and UTF-8 multibyte chars
+ // UTF-8 multibyte characters are supported in identifiers via the PostgreSqlDialect.
90
// https://docs.aws.amazon.com/redshift/latest/dg/r_names.html
91
PostgreSqlDialect {}.is_identifier_part(ch) || ch == '#'
92
0 commit comments