Skip to content

Commit 282f3e0

Browse files
committed
fix(provider/big_query_source): respect sync engine in responses
1 parent 9f94a76 commit 282f3e0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/provider/big_query_source_model_response.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ func NewBigQuerySourceModelFromResponse(ctx context.Context, response cm.SourceD
2525
},
2626
}
2727

28+
if syncEngine, syncEngineOk := response.SyncEngine.Get(); syncEngineOk {
29+
model.SyncEngine = types.StringValue(syncEngine)
30+
}
31+
2832
if response.ConnectionDetails != nil {
2933
path := path.AtName("connection_details")
3034

0 commit comments

Comments
 (0)