File tree 3 files changed +3
-2
lines changed
airbyte-integrations/connectors/source-mssql
src/main/java/io/airbyte/integrations/source/mssql
docs/integrations/sources
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 9
9
connectorSubtype : database
10
10
connectorType : source
11
11
definitionId : b5ea17b1-f170-46dc-bc31-cc744ca984c1
12
- dockerImageTag : 3.7.0
12
+ dockerImageTag : 3.7.1
13
13
dockerRepository : airbyte/source-mssql
14
14
documentationUrl : https://docs.airbyte.com/integrations/sources/mssql
15
15
githubIssueLabel : source-mssql
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ public class MssqlSource extends AbstractJdbcSource<JDBCType> implements Source
108
108
""" ;
109
109
public static final String NULL_CURSOR_VALUE_WITH_SCHEMA_QUERY =
110
110
"""
111
- SELECT CAST(IIF(EXISTS( SELECT TOP 1 1 FROM "%s"."%s" WHERE "%s" IS NULL), 1, 0) AS BIT) AS %s
111
+ SELECT CASE WHEN ( SELECT TOP 1 1 FROM "%s"."%s" WHERE "%s" IS NULL)=1 then 1 else 0 end as %s
112
112
""" ;
113
113
public static final String DRIVER_CLASS = DatabaseDriver .MSSQLSERVER .getDriverClassName ();
114
114
public static final String MSSQL_CDC_OFFSET = "mssql_cdc_offset" ;
Original file line number Diff line number Diff line change @@ -342,6 +342,7 @@ WHERE actor_definition_id ='b5ea17b1-f170-46dc-bc31-cc744ca984c1' AND (configura
342
342
343
343
| Version | Date | Pull Request | Subject |
344
344
| :--------| :-----------| :------------------------------------------------------------------------------------------------------------------| :------------------------------------------------------------------------------------------------------------------------------------------------|
345
+ | 3.7.1 | 2024-02-20 | [ 35405] ( https://github.com/airbytehq/airbyte/pull/35405 ) | Change query syntax to make it compatible with Azure Synapse. |
345
346
| 3.7.0 | 2024-01-30 | [ 33311] ( https://github.com/airbytehq/airbyte/pull/33311 ) | Source mssql with checkpointing initial sync. |
346
347
| 3.6.1 | 2024-01-26 | [ 34573] ( https://github.com/airbytehq/airbyte/pull/34573 ) | Adopt CDK v0.16.0. |
347
348
| 3.6.0 | 2024-01-10 | [ 33700] ( https://github.com/airbytehq/airbyte/pull/33700 ) | Remove CDC config options for data_to_sync and snapshot isolation. |
You can’t perform that action at this time.
0 commit comments