Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
7phs committed Dec 3, 2024
1 parent 00455a8 commit 5e55dfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dialect/redshift.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl Dialect for RedshiftSqlDialect {
// PartiQL uses single quote as starting identification inside a quote
// It is a normal identifier if it has no single quote at the beginning.
// Additionally square bracket can contain quoted identifier.
return ch == '"' || ch != '\'' && self.is_identifier_start(ch);
return ch == '"' || self.is_identifier_start(ch);
}
false
}
Expand Down

0 comments on commit 5e55dfe

Please sign in to comment.