From 4d1d24636fcdc5fffabdddc441859176e1c33290 Mon Sep 17 00:00:00 2001 From: "Ryan Br..." Date: Tue, 16 Dec 2025 09:58:44 -0800 Subject: [PATCH] Rbroughan/load cdk upsert test schema fix (#70932) --- airbyte-cdk/bulk/changelog.md | 4 ++++ .../io/airbyte/cdk/load/component/TableOperationsSuite.kt | 2 +- airbyte-cdk/bulk/version.properties | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/airbyte-cdk/bulk/changelog.md b/airbyte-cdk/bulk/changelog.md index c51fe513cc3..bf1ed4c2e4c 100644 --- a/airbyte-cdk/bulk/changelog.md +++ b/airbyte-cdk/bulk/changelog.md @@ -1,3 +1,7 @@ +## Version 0.1.91 + +load cdk: upsert records test uses proper target schema + ## Version 0.1.90 load cdk: components tests: data coercion tests cover all data types diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt index 490baffe267..c36a3b5a421 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt @@ -607,7 +607,7 @@ interface TableOperationsSuite { val targetTableSchema = schemaFactory.make( targetTable, - Fixtures.TEST_INTEGER_SCHEMA.properties, + Fixtures.ID_TEST_WITH_CDC_SCHEMA.properties, Dedupe( primaryKey = listOf(listOf(Fixtures.ID_FIELD)), cursor = listOf(Fixtures.TEST_FIELD), diff --git a/airbyte-cdk/bulk/version.properties b/airbyte-cdk/bulk/version.properties index 754a5e41c51..0d52db362aa 100644 --- a/airbyte-cdk/bulk/version.properties +++ b/airbyte-cdk/bulk/version.properties @@ -1 +1 @@ -version=0.1.90 +version=0.1.91