You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/main/kotlin/io/airbyte/integrations/base/destination/typing_deduping/CatalogParser.kt
+10-3
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,12 @@ constructor(
33
33
if (it.stream.namespace.isNullOrEmpty()) {
34
34
it.stream.namespace = defaultNamespace
35
35
}
36
+
// The refreshes project is the beginning of the end for OVERWRITE syncs.
37
+
// The sync mode still exists, but we are fully dependent on min_generation to trigger
38
+
// overwrite logic.
39
+
if (it.destinationSyncMode ==DestinationSyncMode.OVERWRITE) {
0 commit comments