You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 0.28.18 | 2024-03-26 |[\#36205](https://github.com/airbytehq/airbyte/pull/36205)| Convert core/main to Kotlin |
169
+
| 0.28.18 | 2024-03-26 |[\#36204](https://github.com/airbytehq/airbyte/pull/36204)| Convert core/test to Kotlin |
170
+
| 0.28.18 | 2024-03-26 |[\#36190](https://github.com/airbytehq/airbyte/pull/36190)| Convert core/testFixtures to Kotlin |
171
+
| 0.28.0 | 2024-03-26 |[\#36514](https://github.com/airbytehq/airbyte/pull/36514)| Bump CDK version to 0.28.0 |
170
172
| 0.27.7 | 2024-03-26 |[\#36466](https://github.com/airbytehq/airbyte/pull/36466)| Destinations: fix support for case-sensitive fields in destination state. |
171
173
| 0.27.6 | 2024-03-26 |[\#36432](https://github.com/airbytehq/airbyte/pull/36432)| Sources support for AirbyteRecordMessageMeta during reading source data types. |
172
174
| 0.27.5 | 2024-03-25 |[\#36461](https://github.com/airbytehq/airbyte/pull/36461)| Destinations: Handle case-sensitive columns in destination state handling. |
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/base/AirbyteExceptionHandler.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -133,6 +133,7 @@ class AirbyteExceptionHandler : Thread.UncaughtExceptionHandler {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/datastore-postgres/src/main/kotlin/io/airbyte/cdk/integrations/util/PostgresSslConnectionUtils.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/AbstractJdbcDestination.kt
+3-3
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@ abstract class AbstractJdbcDestination<DestinationState : MinimumDestinationStat
130
130
return modifyDataSourceBuilder(builder).build()
131
131
}
132
132
133
-
protectedfunmodifyDataSourceBuilder(
133
+
protectedopenfunmodifyDataSourceBuilder(
134
134
builder:DataSourceFactory.DataSourceBuilder
135
135
): DataSourceFactory.DataSourceBuilder {
136
136
return builder
@@ -232,7 +232,7 @@ abstract class AbstractJdbcDestination<DestinationState : MinimumDestinationStat
232
232
}
233
233
234
234
val defaultNamespace = config[configSchemaKey].asText()
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/JdbcSqlOperations.kt
+4-1
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,10 @@ abstract class JdbcSqlOperations : SqlOperations {
82
82
* For example, Postgres does not support index definitions within a CREATE TABLE statement, so
83
83
* we need to run CREATE INDEX statements after creating the table.
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/typing_deduping/JdbcSqlGenerator.kt
+3-13
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,6 @@ import kotlin.Boolean
22
22
importkotlin.IllegalArgumentException
23
23
importkotlin.Int
24
24
importkotlin.String
25
-
importkotlin.UnsupportedOperationException
26
25
importkotlin.plus
27
26
importorg.jooq.*
28
27
importorg.jooq.conf.ParamType
@@ -71,7 +70,7 @@ abstract class JdbcSqlGenerator(protected val namingTransformer: NamingConventio
0 commit comments