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/java/io/airbyte/cdk/db/jdbc/AbstractJdbcCompatibleSourceOperations.java
+1
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@
37
37
* Source operation skeleton for JDBC compatible databases.
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/java/io/airbyte/cdk/integrations/debezium/CdcSourceTest.java
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/java/io/airbyte/cdk/integrations/source/jdbc/test/JdbcSourceAcceptanceTest.java
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/java/io/airbyte/cdk/integrations/standardtest/source/AbstractSourceDatabaseTypeTest.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -197,10 +197,10 @@ public UnexpectedRecord(String streamName, String unexpectedValue) {
197
197
"The stream '" + entry.streamName + "' checking type '" + testByName.get(entry.streamName).getSourceType() + "' initialized at "
198
198
+ testByName.get(entry.streamName).getDeclarationLocation() + " is missing values: " + entry.missedValues)
199
199
.collect(Collectors.joining("\n")) +
200
-
unexpectedValues.stream().map((entry) -> // stream each entry, map it to string value
201
-
"The stream '" + entry.streamName + "' checking type '" + testByName.get(entry.streamName).getSourceType() + "' initialized at "
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/java/io/airbyte/cdk/integrations/standardtest/source/TestRunner.java
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcStateHandler.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ public AirbyteMessage saveState(final Map<String, String> offset, final SchemaHi
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlCdcTargetPosition.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ public static MssqlCdcTargetPosition getTargetPosition(final JdbcDatabase databa
105
105
LOGGER.info("identified target lsn: " + maxLsn);
106
106
returnnewMssqlCdcTargetPosition(maxLsn);
107
107
} else {
108
-
thrownewRuntimeException("SQL returned max LSN as null, this might be because the SQL Server Agent is not running. " +
108
+
thrownewRuntimeException("SQL returned max LSN as null on database " + dbName + ", this might be because the SQL Server Agent is not running. " +
109
109
"Please enable the Agent and try again (https://docs.microsoft.com/en-us/sql/ssms/agent/start-stop-or-pause-the-sql-server-agent-service)");
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlSourceOperations.java
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/cdc/MssqlDebeziumStateUtil.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ public JsonNode constructInitialDebeziumState(final Properties properties,
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/initialsync/MssqlInitialSyncStateIterator.java
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/AbstractMssqlSourceDatatypeTest.java
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceTest.java
0 commit comments