Skip to content

Commit

Permalink
🐛 fix gcp bigquery dataset init
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Milchev <[email protected]>
  • Loading branch information
imilchev committed Apr 9, 2024
1 parent 17de88b commit 3f8e0a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/gcp/resources/bigquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func initGcpProjectBigqueryServiceDataset(runtime *plugin.Runtime, args map[stri
return nil, nil, projectId.Error
}

if id == args["id"].Value && projectId == args["projectId"].Value && location == args["location"].Value {
if id.Data == args["id"].Value && projectId.Data == args["projectId"].Value && location.Data == args["location"].Value {
return args, dataset, nil
}
}
Expand Down

0 comments on commit 3f8e0a7

Please sign in to comment.