INVALID_CDC_OPTION error condition

SQLSTATE: 42K03

Invalid Change Data Capture (CDC) option.

CONFLICTING_RANGE_TYPES

Cannot specify both version and timestamp ranges for CDC queries. Use either startingVersion/endingVersion or startingTimestamp/endingTimestamp.

INVALID_DEDUPLICATION_MODE

Invalid deduplicationMode: '<mode>'. Expected one of: none, dropCarryovers, netChanges.

INVALID_TIMESTAMP

The timestamp '<timestamp>' cannot be cast to TIMESTAMP type for CDC queries.

INVALID_TIMESTAMP_EXPR

The timestamp expression for CDC queries must not contain subqueries.

MISSING_STARTING_TIMESTAMP

startingTimestamp is required when endingTimestamp is specified for CDC queries.

MISSING_STARTING_VERSION

startingVersion is required when endingVersion is specified for CDC queries.

UPDATE_DETECTION_REQUIRES_CARRY_OVER_REMOVAL

computeUpdates cannot be used with deduplicationMode=none on connector <changelogName> because the connector emits copy-on-write carry-over pairs (containsCarryoverRows() returns true) that would be silently mislabeled as updates. Set deduplicationMode to dropCarryovers or netChanges.