Enum SupportsRowLevelDelete.RowLevelDeleteMode

java.lang.Object
java.lang.Enum<SupportsRowLevelDelete.RowLevelDeleteMode>
org.apache.flink.table.connector.sink.abilities.SupportsRowLevelDelete.RowLevelDeleteMode
All Implemented Interfaces:
Serializable, Comparable<SupportsRowLevelDelete.RowLevelDeleteMode>
Enclosing interface:
SupportsRowLevelDelete

@PublicEvolving public static enum SupportsRowLevelDelete.RowLevelDeleteMode extends Enum<SupportsRowLevelDelete.RowLevelDeleteMode>
Type of delete modes that the sink expects for delete purpose.

Currently, two modes are supported:

  • DELETED_ROWS - in this mode, the sink will only get the rows that need to be deleted.
  • REMAINING_ROWS - in this mode, the sink will only get the remaining rows after deletion.