Skip to content

Commit 9cc8d84

Browse files
committed
disable T+D permanently
1 parent 5e1eaee commit 9cc8d84

File tree

4 files changed

+17
-747
lines changed

4 files changed

+17
-747
lines changed

airbyte-cdk/bulk/toolkits/load-db/src/main/kotlin/io/airbyte/cdk/load/orchestration/db/Sql.kt

+2
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,7 @@ data class Sql(val transactions: List<List<String>>) {
111111
.filter { it.isNotEmpty() }
112112
)
113113
}
114+
115+
fun empty() = Sql(emptyList())
114116
}
115117
}

airbyte-integrations/connectors/destination-bigquery/src/main/kotlin/io/airbyte/integrations/destination/bigquery/BigqueryBeansFactory.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ class BigqueryBeansFactory {
7676
BigQuerySqlGenerator(config.projectId, config.datasetLocation.region),
7777
destinationHandler,
7878
),
79-
disableTypeDedupe = config.disableTypingDeduping,
80-
streamStateStore,
79+
disableTypeDedupe = true,
80+
streamStateStore
8181
)
8282
}
8383

0 commit comments

Comments
 (0)