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/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/source/jdbc/AbstractJdbcSource.kt
+1-4
Original file line number
Diff line number
Diff line change
@@ -423,10 +423,7 @@ abstract class AbstractJdbcSource<Datatype>(
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/source/relationaldb/DbSourceDiscoverUtil.kt
+2-3
Original file line number
Diff line number
Diff line change
@@ -143,9 +143,8 @@ object DbSourceDiscoverUtil {
143
143
)
144
144
.withSourceDefinedPrimaryKey(primaryKeys)
145
145
}
146
-
// This is ugly. Some of our tests change the streams on the AirbyteCatalog
147
-
// object...
148
-
.toMutableList()
146
+
.toMutableList() // This is ugly, but we modify this list in
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/source/relationaldb/RelationalDbReadUtil.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/source/relationaldb/state/CursorManager.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/source/relationaldb/state/GlobalStateManager.kt
+2-4
Original file line number
Diff line number
Diff line change
@@ -105,15 +105,14 @@ class GlobalStateManager(
105
105
): Set<AirbyteStreamNameNamespacePair> {
106
106
if (airbyteStateMessage!!.type ==AirbyteStateMessage.AirbyteStateType.GLOBAL) {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/kotlin/io/airbyte/cdk/integrations/debezium/CdcSourceTest.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/kotlin/io/airbyte/cdk/integrations/source/jdbc/test/JdbcStressTest.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/validation/json/JsonSchemaValidator.kt
+1-3
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@ import java.io.File
11
11
importjava.io.IOException
12
12
importjava.net.URI
13
13
importjava.net.URISyntaxException
14
-
importjava.util.stream.Collectors
15
14
importme.andrz.jackson.JsonContext
16
15
importme.andrz.jackson.JsonReferenceException
17
16
importme.andrz.jackson.JsonReferenceProcessor
@@ -89,9 +88,8 @@ class JsonSchemaValidator @VisibleForTesting constructor(private val baseUri: UR
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/helper/CatalogClientConverters.kt
0 commit comments