Enum Class JdbcSinkConnectorConfig.SchemaEvolutionMode

java.lang.Object
java.lang.Enum<JdbcSinkConnectorConfig.SchemaEvolutionMode>
io.debezium.connector.jdbc.JdbcSinkConnectorConfig.SchemaEvolutionMode
All Implemented Interfaces:
EnumeratedValue, Serializable, Comparable<JdbcSinkConnectorConfig.SchemaEvolutionMode>, Constable
Enclosing class:
JdbcSinkConnectorConfig

public static enum JdbcSinkConnectorConfig.SchemaEvolutionMode extends Enum<JdbcSinkConnectorConfig.SchemaEvolutionMode> implements EnumeratedValue
Different modes that the destination table's schema can be evolved.
  • Enum Constant Details

    • NONE

      No schema evolution occurs, assumed that the destination table's structure matches the event.
    • BASIC

      When an event is received, the table will be created if it does not exist, and any new fields found in the event will be amended to the existing tables. Any columns omitted from the event will simply be skipped during inserts and updates.
  • Field Details

  • Constructor Details

    • SchemaEvolutionMode

      private SchemaEvolutionMode(String mode)
  • Method Details