Skip to content

Commit 474349e

Browse files
authored
🐛Destination-mssql: fixed integration tests (#13304)
* [13180] Destination-mssql: fixed integration tests
1 parent 76032e6 commit 474349e

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

airbyte-config/init/src/main/resources/seed/destination_definitions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
- name: MS SQL Server
163163
destinationDefinitionId: d4353156-9217-4cad-8dd7-c108fd4f74cf
164164
dockerRepository: airbyte/destination-mssql
165-
dockerImageTag: 0.1.17
165+
dockerImageTag: 0.1.18
166166
documentationUrl: https://docs.airbyte.io/integrations/destinations/mssql
167167
icon: mssql.svg
168168
releaseStage: alpha

airbyte-config/init/src/main/resources/seed/destination_specs.yaml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2417,7 +2417,7 @@
24172417
supportsDBT: false
24182418
supported_destination_sync_modes:
24192419
- "append"
2420-
- dockerImage: "airbyte/destination-mssql:0.1.17"
2420+
- dockerImage: "airbyte/destination-mssql:0.1.18"
24212421
spec:
24222422
documentationUrl: "https://docs.airbyte.io/integrations/destinations/mssql"
24232423
connectionSpecification:
@@ -2473,12 +2473,19 @@
24732473
type: "string"
24742474
airbyte_secret: true
24752475
order: 5
2476+
jdbc_url_params:
2477+
title: "JDBC URL Params"
2478+
description: "Additional properties to pass to the JDBC URL string when\
2479+
\ connecting to the database formatted as 'key=value' pairs separated\
2480+
\ by the symbol '&'. (example: key1=value1&key2=value2&key3=value3)."
2481+
type: "string"
2482+
order: 6
24762483
ssl_method:
24772484
title: "SSL Method"
24782485
type: "object"
24792486
description: "The encryption method which is used to communicate with the\
24802487
\ database."
2481-
order: 6
2488+
order: 7
24822489
oneOf:
24832490
- title: "Unencrypted"
24842491
additionalProperties: false
@@ -2489,6 +2496,7 @@
24892496
properties:
24902497
ssl_method:
24912498
type: "string"
2499+
const: "unencrypted"
24922500
enum:
24932501
- "unencrypted"
24942502
default: "unencrypted"
@@ -2502,6 +2510,7 @@
25022510
properties:
25032511
ssl_method:
25042512
type: "string"
2513+
const: "encrypted_trust_server_certificate"
25052514
enum:
25062515
- "encrypted_trust_server_certificate"
25072516
default: "encrypted_trust_server_certificate"
@@ -2516,6 +2525,7 @@
25162525
properties:
25172526
ssl_method:
25182527
type: "string"
2528+
const: "encrypted_verify_certificate"
25192529
enum:
25202530
- "encrypted_verify_certificate"
25212531
default: "encrypted_verify_certificate"
@@ -2524,7 +2534,7 @@
25242534
type: "string"
25252535
description: "Specifies the host name of the server. The value of\
25262536
\ this property must match the subject property of the certificate."
2527-
order: 7
2537+
order: 8
25282538
tunnel_method:
25292539
type: "object"
25302540
title: "SSH Tunnel Method"

airbyte-integrations/connectors/destination-mssql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-mssql
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.1.17
19+
LABEL io.airbyte.version=0.1.18
2020
LABEL io.airbyte.name=airbyte/destination-mssql

0 commit comments

Comments
 (0)