Skip to content

Commit 5c31db4

Browse files
authored
fix(warehouse): transactional - json_schema no longer accepted by the API (#122)
1 parent f582052 commit 5c31db4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/warehouse/common.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ func addConnection[T WarehouseResource[J, K], J WarehouseResourceModel, K TestCr
5757
createWarehouseType = &temp
5858
}
5959

60-
jobTypes := []string{"metadata", "sql_query", "json_schema"}
60+
jobTypes := []string{"metadata", "sql_query"}
6161
if connectionType != client.TrxConnectionType {
62-
jobTypes = append(jobTypes, "query_logs")
62+
jobTypes = append(jobTypes, "query_logs", "json_schema")
6363
}
6464

6565
variables := map[string]interface{}{

0 commit comments

Comments
 (0)