Skip to content

Commit

Permalink
Merge branch 'release/1.1.x' into fix/json-out-of-bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
lvrach authored Sep 23, 2022
2 parents 4a1b100 + a56e2b3 commit 638e52e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.1.2](https://github.com/rudderlabs/rudder-server/compare/v1.1.1...v1.1.2) (2022-09-23)


### Bug Fixes

* snowflake identifier issue ([#2471](https://github.com/rudderlabs/rudder-server/issues/2471)) ([d4b2583](https://github.com/rudderlabs/rudder-server/commit/d4b2583a81104eb35b226b3606e178506897fab0))

## [1.1.1](https://github.com/rudderlabs/rudder-server/compare/v1.1.0...v1.1.1) (2022-09-15)


Expand Down
4 changes: 1 addition & 3 deletions warehouse/snowflake/snowflake.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,7 @@ func ColumnsWithDataTypes(columns map[string]string, prefix string) string {

// schemaIdentifier returns [DATABASE_NAME].[NAMESPACE] format to access the schema directly.
func (sf *HandleT) schemaIdentifier() string {
DatabaseName := warehouseutils.GetConfigValue(SFDbName, sf.Warehouse)
return fmt.Sprintf(`"%s"."%s"`,
DatabaseName,
return fmt.Sprintf(`"%s"`,
sf.Namespace,
)
}
Expand Down

0 comments on commit 638e52e

Please sign in to comment.