Skip to content

Commit

Permalink
updated source schema
Browse files Browse the repository at this point in the history
  • Loading branch information
etsybaev committed Jan 26, 2022
1 parent 31f4c78 commit cde71b2
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion airbyte-config/init/src/main/resources/seed/source_specs.yaml
Expand Up @@ -6330,7 +6330,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-redshift:0.3.6"
- dockerImage: "airbyte/source-redshift:0.3.7"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/destinations/redshift"
connectionSpecification:
Expand All @@ -6350,6 +6350,7 @@
description: "Host Endpoint of the Redshift Cluster (must include the cluster-id,\
\ region and end with .redshift.amazonaws.com)."
type: "string"
order: 1
port:
title: "Port"
description: "Port of the database."
Expand All @@ -6359,21 +6360,37 @@
default: 5439
examples:
- "5439"
order: 2
database:
title: "Database"
description: "Name of the database."
type: "string"
examples:
- "master"
order: 3
schemas:
title: "Schemas"
description: "The list of schemas to sync from. Specify one or more explicitly\
\ or keep empty to process all schemas. Schema names are case sensitive."
type: "array"
items:
type: "string"
minItems: 0
uniqueItems: true
examples:
- "public"
order: 4
username:
title: "Username"
description: "Username to use to access the database."
type: "string"
order: 5
password:
title: "Password"
description: "Password associated with the username."
type: "string"
airbyte_secret: true
order: 6
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
Expand Down

1 comment on commit cde71b2

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube Report

SonarQube report for Airbyte Connectors Source Redshift(#9721)

Measures

Name Value Name Value Name Value
Security Rating A Duplicated Lines (%) 0.0 Vulnerabilities 0
Bugs 0 Lines of Code 93 Code Smells 3
Reliability Rating A Lines to Cover 45 Duplicated Blocks 0
Quality Gate Status OK Coverage 0.0 Blocker Issues 1
Critical Issues 0 Major Issues 1 Minor Issues 0

Detected Issues

Rule File Description Message
java:S1845 (BLOCKER) redshift/RedshiftSource.java:29 Methods and field names should not be the same or differ only by capitalization Rename field "schemas" to prevent any misunderstanding/clash with field "SCHEMAS".
java:S2589 (MAJOR) redshift/RedshiftSource.java:54 Boolean expressions should not be gratuitous Remove this expression which always evaluates to "true"
java:S1135 (INFO) redshift/RedshiftSource.java:31 Track uses of "TODO" tags Complete the task associated to this TODO comment.

Coverage (0.0%)

File Coverage File Coverage
src/main/java/io/airbyte/integrations/source/redshift/RedshiftJdbcStreamingQueryConfiguration.java 0.0 src/main/java/io/airbyte/integrations/source/redshift/RedshiftSource.java 0.0

Please sign in to comment.