Class DefaultColumnNamingStrategy

java.lang.Object
io.debezium.connector.jdbc.naming.DefaultColumnNamingStrategy
All Implemented Interfaces:
ColumnNamingStrategy

public class DefaultColumnNamingStrategy extends Object implements ColumnNamingStrategy
The default implementation of the ColumnNamingStrategy that simply returns the field's name as the column name in the destination table.
Author:
Chris Cranford
  • Constructor Details

    • DefaultColumnNamingStrategy

      public DefaultColumnNamingStrategy()
  • Method Details

    • resolveColumnName

      public String resolveColumnName(String fieldName)
      Description copied from interface: ColumnNamingStrategy
      Resolves the logical field name from the change event to a column name.
      Specified by:
      resolveColumnName in interface ColumnNamingStrategy
      Parameters:
      fieldName - the field name, should not be null.
      Returns:
      the resolved logical column name, never null.