Uses of Class
com.zendesk.maxwell.schema.SchemaStoreException
-
Packages that use SchemaStoreException Package Description com.zendesk.maxwell.recovery allows users to continue a stream after changing masterscom.zendesk.maxwell.replication concerns the operation of the binlog replicatorcom.zendesk.maxwell.schema stores and updates (via SQL parsing) a view of the mysql schema -
-
Uses of SchemaStoreException in com.zendesk.maxwell.recovery
Methods in com.zendesk.maxwell.recovery that throw SchemaStoreException Modifier and Type Method Description Schema
RecoverySchemaStore. getSchema()
Long
RecoverySchemaStore. getSchemaID()
List<ResolvedSchemaChange>
RecoverySchemaStore. processSQL(String sql, String currentDatabase, Position position)
-
Uses of SchemaStoreException in com.zendesk.maxwell.replication
Methods in com.zendesk.maxwell.replication that throw SchemaStoreException Modifier and Type Method Description Schema
BinlogConnectorReplicator. getSchema()
Schema
Replicator. getSchema()
Long
BinlogConnectorReplicator. getSchemaId()
Long
Replicator. getSchemaId()
-
Uses of SchemaStoreException in com.zendesk.maxwell.schema
Methods in com.zendesk.maxwell.schema that throw SchemaStoreException Modifier and Type Method Description void
MysqlSchemaStore. clone(Long serverID, Position position)
Schema
MysqlSchemaStore. getSchema()
Schema
SchemaStore. getSchema()
Retrieve the current schema If no Stored schema is found, this method should capture and save a snapshot of the current mysql schema.Long
MysqlSchemaStore. getSchemaID()
Long
SchemaStore. getSchemaID()
Retrieve current schema id Schema id should be an always increasing integer, not current intended for use to refernce the schema, simply as a schema generation indicator.List<ResolvedSchemaChange>
MysqlSchemaStore. processSQL(String sql, String currentDatabase, Position position)
List<ResolvedSchemaChange>
SchemaStore. processSQL(String sql, String currentDatabase, Position position)
Process a DDL statement Parse the given SQL, applying the changes to the schema.
-