Class DefaultColumnNamingStrategy
java.lang.Object
io.debezium.connector.jdbc.naming.DefaultColumnNamingStrategy
- All Implemented Interfaces:
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionresolveColumnName(String fieldName) Resolves the logical field name from the change event to a column name.
-
Constructor Details
-
DefaultColumnNamingStrategy
public DefaultColumnNamingStrategy()
-
-
Method Details
-
resolveColumnName
Description copied from interface:ColumnNamingStrategyResolves the logical field name from the change event to a column name.- Specified by:
resolveColumnNamein interfaceColumnNamingStrategy- Parameters:
fieldName- the field name, should not benull.- Returns:
- the resolved logical column name, never
null.
-