Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-jovanmanojlovic committed Nov 27, 2024
1 parent fa03458 commit dcca585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fivetran/framework/core/model/connector_schema_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (d *ConnectorSchemaResourceModel) getSchemasMap(schemas []interface{}) base
columnElements["hashed"] = types.BoolNull()
}

if _, ok := localColumn["is_primary_key"]; ok {
if _, ok := localColumn["is_primary_key"]; ok && columnMap["is_primary_key"] != nil {
columnElements["is_primary_key"] = types.BoolValue(helpers.StrToBool(columnMap["is_primary_key"].(string)))
} else {
columnElements["is_primary_key"] = types.BoolNull()
Expand Down

0 comments on commit dcca585

Please sign in to comment.