1
0
mirror of synced 2025-12-19 18:14:56 -05:00

Add CDC_CURSOR_COLUMN to load cdk for reference. (#70852)

This commit is contained in:
Ryan Br...
2025-12-10 15:34:29 -08:00
committed by GitHub
parent 650b3804ac
commit 6a48afc369
3 changed files with 16 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
## Version 0.1.88
**Load CDK**
* Add CDC_CURSOR_COLUMN_NAME constant.
## Version 0.1.87
**Load CDK**

View File

@@ -4,4 +4,13 @@
package io.airbyte.cdk.load.table
/**
* CDC meta column names.
*
* Note: These CDC column names are brittle as they are separate yet coupled to the logic sources
* use to generate these column names. See
* [io.airbyte.integrations.source.mssql.MsSqlSourceOperations.MsSqlServerCdcMetaFields] for an
* example.
*/
const val CDC_DELETED_AT_COLUMN = "_ab_cdc_deleted_at"
const val CDC_CURSOR_COLUMN = "_ab_cdc_cursor"

View File

@@ -1 +1 @@
version=0.1.87
version=0.1.88