Skip to content

Commit

Permalink
Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Apr 24, 2024
1 parent 916b120 commit 51a8332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/typing/columns/columns.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ type NameArgs struct {
}

// Name will give you c.name
// However, if you pass in escape, we will escape if the column name is part of the reserved words from destinations.
// Plus we will escape it if the column name is part of the reserved words from destinations.
// If so, it'll change from `start` => `"start"` as suggested by Snowflake.
func (c *Column) Name(uppercaseEscNames bool, destKind constants.DestinationKind) string {
return sql.EscapeNameIfNecessary(c.name, uppercaseEscNames, destKind)
Expand Down

0 comments on commit 51a8332

Please sign in to comment.