Package io.debezium.connector.sqlserver
Class SqlServerConnectorIT.PurgableFileDatabaseHistory
- java.lang.Object
-
- io.debezium.connector.sqlserver.SqlServerConnectorIT.PurgableFileDatabaseHistory
-
- All Implemented Interfaces:
DatabaseHistory
- Enclosing class:
- SqlServerConnectorIT
public static class SqlServerConnectorIT.PurgableFileDatabaseHistory extends Object implements DatabaseHistory
-
-
Field Summary
Fields Modifier and Type Field Description (package private) DatabaseHistorydelegate-
Fields inherited from interface io.debezium.relational.history.DatabaseHistory
CONFIGURATION_FIELD_PREFIX_STRING, DDL_FILTER, NAME, SKIP_UNPARSEABLE_DDL_STATEMENTS, STORE_ONLY_CAPTURED_TABLES_DDL, STORE_ONLY_MONITORED_TABLES_DDL
-
-
Constructor Summary
Constructors Constructor Description PurgableFileDatabaseHistory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Configuration config, HistoryRecordComparator comparator, DatabaseHistoryListener listener, boolean useCatalogBeforeSchema)booleanexists()voidinitializeStorage()voidrecord(Map<String,?> source, Map<String,?> position, String databaseName, String ddl)voidrecord(Map<String,?> source, Map<String,?> position, String databaseName, String schemaName, String ddl, TableChanges changes)voidrecover(io.debezium.pipeline.spi.Offsets<?,?> offsets, Tables schema, DdlParser ddlParser)voidrecover(Map<Map<String,?>,Map<String,?>> offsets, Tables schema, DdlParser ddlParser)booleanskipUnparseableDdlStatements()voidstart()voidstop()booleanstorageExists()booleanstoreOnlyCapturedTables()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.debezium.relational.history.DatabaseHistory
recover
-
-
-
-
Field Detail
-
delegate
final DatabaseHistory delegate
-
-
Method Detail
-
exists
public boolean exists()
- Specified by:
existsin interfaceDatabaseHistory
-
configure
public void configure(Configuration config, HistoryRecordComparator comparator, DatabaseHistoryListener listener, boolean useCatalogBeforeSchema)
- Specified by:
configurein interfaceDatabaseHistory
-
start
public void start()
- Specified by:
startin interfaceDatabaseHistory
-
record
public void record(Map<String,?> source, Map<String,?> position, String databaseName, String ddl) throws DatabaseHistoryException
- Specified by:
recordin interfaceDatabaseHistory- Throws:
DatabaseHistoryException
-
record
public void record(Map<String,?> source, Map<String,?> position, String databaseName, String schemaName, String ddl, TableChanges changes) throws DatabaseHistoryException
- Specified by:
recordin interfaceDatabaseHistory- Throws:
DatabaseHistoryException
-
recover
public void recover(io.debezium.pipeline.spi.Offsets<?,?> offsets, Tables schema, DdlParser ddlParser)- Specified by:
recoverin interfaceDatabaseHistory
-
recover
public void recover(Map<Map<String,?>,Map<String,?>> offsets, Tables schema, DdlParser ddlParser)
- Specified by:
recoverin interfaceDatabaseHistory
-
stop
public void stop()
- Specified by:
stopin interfaceDatabaseHistory
-
storageExists
public boolean storageExists()
- Specified by:
storageExistsin interfaceDatabaseHistory
-
initializeStorage
public void initializeStorage()
- Specified by:
initializeStoragein interfaceDatabaseHistory
-
storeOnlyCapturedTables
public boolean storeOnlyCapturedTables()
- Specified by:
storeOnlyCapturedTablesin interfaceDatabaseHistory
-
skipUnparseableDdlStatements
public boolean skipUnparseableDdlStatements()
- Specified by:
skipUnparseableDdlStatementsin interfaceDatabaseHistory
-
-