Interface SourceConnectorOptions
public interface SourceConnectorOptions
A parameter object for passing source connector options that may vary by test matrix invocation.
- Author:
- Chris Cranford
-
Method Summary
Modifier and TypeMethodDescriptionio.debezium.jdbc.TemporalPrecisionModeReturns the temporal precision mode.booleanReturns whether column type propagation is enabled; defaults tofalse.booleanReturns whether the source connector should be deployed usingExtractNewRecordState.booleanWhether to execute tests applying default values.booleanWhether to test capturing changes via snapshot when true, streaming when false.
-
Method Details
-
useSnapshot
boolean useSnapshot()Whether to test capturing changes via snapshot when true, streaming when false. -
useDefaultValues
boolean useDefaultValues()Whether to execute tests applying default values. -
isFlatten
boolean isFlatten()Returns whether the source connector should be deployed usingExtractNewRecordState. -
isColumnTypePropagated
boolean isColumnTypePropagated()Returns whether column type propagation is enabled; defaults tofalse. -
getTemporalPrecisionMode
io.debezium.jdbc.TemporalPrecisionMode getTemporalPrecisionMode()Returns the temporal precision mode.
-