1
0
mirror of synced 2025-12-26 14:02:10 -05:00

Destination Redshift: CDK update with least changes (#38825)

This commit is contained in:
Gireesh Sreepathi
2024-05-31 13:39:23 -07:00
committed by GitHub
parent 9de7e1643f
commit 82aca52ca4
5 changed files with 8 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ plugins {
}
airbyteJavaConnector {
cdkVersionRequired = '0.35.0'
cdkVersionRequired = '0.35.15'
features = ['db-destinations', 's3-destinations', 'typing-deduping']
useLocalCdk = false
}

View File

@@ -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

View File

@@ -107,7 +107,7 @@ class RedshiftS3StagingSqlOperations(
database: JdbcDatabase?,
stageName: String?,
stagingPath: String?,
stagedFiles: List<String?>?,
stagedFiles: List<String>?,
tableName: String?,
schemaName: String?
) {

View File

@@ -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

View File

@@ -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` |