Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Apr 29, 2024
1 parent 2f57442 commit af45fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sql/escape.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func NeedsEscaping(name string, destKind constants.DestinationKind) bool {
if destKind == constants.Redshift {
reservedKeywords = constants.RedshiftReservedKeywords
} else if destKind == constants.MSSQL || destKind == constants.BigQuery {
// TODO: Escape names that start with `constants.ArtiePrefix`
// TODO: Escape names that start with [constants.ArtiePrefix].
if !strings.HasPrefix(name, constants.ArtiePrefix) {
return true
}
Expand Down

0 comments on commit af45fc7

Please sign in to comment.