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/core/src/main/kotlin/io/airbyte/cdk/integrations/base/spec_modification/SpecModifyingDestination.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/AbstractJdbcDestination.kt
+9-4
Original file line number
Diff line number
Diff line change
@@ -65,8 +65,7 @@ abstract class AbstractJdbcDestination<DestinationState : MinimumDestinationStat
65
65
namingResolver,
66
66
sqlOperations
67
67
)
68
-
protectedval configSchemaKey:String
69
-
get() ="schema"
68
+
protectedopenval configSchemaKey:String="schema"
70
69
71
70
/**
72
71
* If the destination should always disable type dedupe, override this method to return true. We
@@ -196,6 +195,11 @@ abstract class AbstractJdbcDestination<DestinationState : MinimumDestinationStat
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/JdbcBufferedConsumerFactory.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/JdbcSqlOperations.kt
+6-1
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,12 @@ abstract class JdbcSqlOperations : SqlOperations {
144
144
val uuid =UUID.randomUUID().toString()
145
145
146
146
val jsonData = record.serialized
147
-
val airbyteMeta =Jsons.serialize(record.record!!.meta)
0 commit comments