Skip to content

Commit

Permalink
Destination Redshift: CDK update with least changes (#38825)
Browse files Browse the repository at this point in the history
  • Loading branch information
gisripa authored May 31, 2024
1 parent 9de7e16 commit 82aca52
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

airbyteJavaConnector {
cdkVersionRequired = '0.35.0'
cdkVersionRequired = '0.35.15'
features = ['db-destinations', 's3-destinations', 'typing-deduping']
useLocalCdk = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: f7a7d195-377f-cf5b-70a5-be6b819019dc
dockerImageTag: 2.6.3
dockerImageTag: 2.6.4
dockerRepository: airbyte/destination-redshift
documentationUrl: https://docs.airbyte.com/integrations/destinations/redshift
githubIssueLabel: destination-redshift
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class RedshiftS3StagingSqlOperations(
database: JdbcDatabase?,
stageName: String?,
stagingPath: String?,
stagedFiles: List<String?>?,
stagedFiles: List<String>?,
tableName: String?,
schemaName: String?
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ class RedshiftDestinationHandler(
rawNamespace,
SQLDialect.DEFAULT
) {
override fun createNamespaces(schemas: Set<String>) {
TODO("Not yet implemented")
}

@Throws(Exception::class)
override fun execute(sql: Sql) {
val transactions = sql.transactions
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/destinations/redshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ Each stream will be output into its own raw table in Redshift. Each table will c

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:-----------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 2.6.4 | 2024-05-31 | [38825](https://github.com/airbytehq/airbyte/pull/38825) | Adopt CDK 0.35.15 |
| 2.6.3 | 2024-05-31 | [38803](https://github.com/airbytehq/airbyte/pull/38803) | Source auto-conversion to Kotlin |
| 2.6.2 | 2024-05-14 | [38189](https://github.com/airbytehq/airbyte/pull/38189) | adding an option to DROP CASCADE on resets |
| 2.6.1 | 2024-05-13 | [\#38126](https://github.com/airbytehq/airbyte/pull/38126) | Adapt to signature changes in `StreamConfig` |
Expand Down

0 comments on commit 82aca52

Please sign in to comment.