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/db/jdbc/AbstractJdbcCompatibleSourceOperations.kt
+9-4
Original file line number
Diff line number
Diff line change
@@ -213,15 +213,20 @@ abstract class AbstractJdbcCompatibleSourceOperations<Datatype> :
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
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
+2-2
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ abstract class JdbcSqlOperations : SqlOperations {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/SqlOperationsUtils.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/copy/SwitchingDestination.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ import org.slf4j.LoggerFactory
28
28
* This class exists to make it easy to define a destination in terms of multiple other destination
29
29
* implementations, switching between them based on the config provided.
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/typing_deduping/JdbcDestinationHandler.kt
+4-7
Original file line number
Diff line number
Diff line change
@@ -263,24 +263,21 @@ abstract class JdbcDestinationHandler<DestinationState>(
263
263
// We can't directly call record.set here, because that will raise a
264
264
// ConcurrentModificationException on the fieldnames iterator.
265
265
// Instead, build up a map of new fields and set them all at once.
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/typing_deduping/JdbcSqlGenerator.kt
+3-3
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,7 @@ abstract class JdbcSqlGenerator(protected val namingTransformer: NamingConventio
144
144
cursorField:Optional<ColumnId>
145
145
): Field<Int>
146
146
147
-
protectedval dslContext:DSLContext
147
+
protectedopenval dslContext:DSLContext
148
148
get() =DSL.using(dialect)
149
149
150
150
/**
@@ -596,7 +596,7 @@ abstract class JdbcSqlGenerator(protected val namingTransformer: NamingConventio
596
596
.getSQL(ParamType.INLINED)
597
597
}
598
598
599
-
protectedfuncastedField(
599
+
protectedopenfuncastedField(
600
600
field:Field<*>?,
601
601
type:AirbyteType,
602
602
alias:String?,
@@ -625,7 +625,7 @@ abstract class JdbcSqlGenerator(protected val namingTransformer: NamingConventio
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/DestinationAcceptanceTest.kt
+6-6
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ abstract class DestinationAcceptanceTest {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/TestingNamespaces.kt
+2
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@ object TestingNamespaces {
38
38
*
39
39
* @return convention-compliant namespace
40
40
*/
41
+
@JvmStatic
41
42
@JvmOverloads
42
43
fungenerate(prefix:String? = null): String {
43
44
val userDefinedPrefix =if (prefix !=null) prefix +"_"else""
@@ -58,6 +59,7 @@ object TestingNamespaces {
58
59
* @param namespace to check
59
60
* @return true if the namespace is older than 2 days, otherwise false
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/comparator/AdvancedTestDataComparator.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ open class AdvancedTestDataComparator : TestDataComparator {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/typing_deduping/JdbcTypingDedupingTest.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -36,15 +36,15 @@ abstract class JdbcTypingDedupingTest : BaseTypingDedupingTest() {
0 commit comments