Skip to content

Commit 03b7b9b

Browse files
devin-ai-integration[bot]baptiste-bergmann-maxatheyueli
authored
[source-mssql, cdk]: cherry-pick PR #55701 (#55709)
Co-authored-by: Baptiste Bergmann <[email protected]> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: [email protected] <[email protected]>
1 parent 8ea64c1 commit 03b7b9b

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

airbyte-cdk/java/airbyte-cdk/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ corresponds to that version.
174174

175175
| Version | Date | Pull Request | Subject |
176176
|:-----------|:-----------|:------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
177+
| 0.48.8 | 2025-03-11 | [\#55709](https://github.com/airbytehq/airbyte/pull/55709) | Filter unwanted tables in discover to prevent null table issues |
177178
| 0.48.7 | 2025-01-26 | [\#51596](https://github.com/airbytehq/airbyte/pull/51596) | Make efficient table discovery during read |
178179
| 0.48.6 | 2025-01-26 | [\#51596](https://github.com/airbytehq/airbyte/pull/51596) | Fix flaky source mssql tests |
179180
| 0.48.5 | 2025-01-16 | [\#51583](https://github.com/airbytehq/airbyte/pull/51583) | Also save SSL key to /tmp in destination-postgres |
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.48.7
1+
version=0.48.8

airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/source/jdbc/AbstractJdbcSource.kt

+1
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,7 @@ abstract class AbstractJdbcSource<Datatype>(
576576
}
577577
.values
578578
.map { fields: List<JsonNode> -> jsonFieldListToTableInfo(fields) }
579+
.filter { ti: TableInfo<CommonField<Datatype>> -> ti.name == tableName }
579580
.firstOrNull()
580581
}
581582

airbyte-integrations/connectors/source-mssql/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
airbyteJavaConnector {
66
cdkVersionRequired = '0.48.7'
77
features = ['db-sources']
8-
useLocalCdk = false
8+
useLocalCdk = true
99
}
1010

1111
java {

docs/integrations/sources/mssql.md

+1
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,7 @@ WHERE actor_definition_id ='b5ea17b1-f170-46dc-bc31-cc744ca984c1' AND (configura
445445

446446
| Version | Date | Pull Request | Subject |
447447
|:--------|:-----------|:------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------|
448+
| 4.1.24 | 2025-03-11 | [55709](https://github.com/airbytehq/airbyte/pull/55709) | Filter unwanted tables in discover to prevent null table issues |
448449
| 4.1.23 | 2025-03-06 | [55234](https://github.com/airbytehq/airbyte/pull/55234) | Update base image version for certified DB source connectors |
449450
| 4.1.22 | 2025-02-10 | [53217](https://github.com/airbytehq/airbyte/pull/53217) | Default to PK when the clustered index is composite. |
450451
| 4.1.21 | 2025-02-21 | [54189](https://github.com/airbytehq/airbyte/pull/54189) | Print state data only in the debugging log. |

0 commit comments

Comments
 (0)