Skip to content

Commit

Permalink
Add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Apr 29, 2024
1 parent 4c5aa3d commit 2f57442
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/sql/escape.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +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`
if !strings.HasPrefix(name, constants.ArtiePrefix) {
return true
}
Expand Down

0 comments on commit 2f57442

Please sign in to comment.