Uses of Class
com.zendesk.maxwell.schema.Schema
-
Packages that use Schema 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 schemacom.zendesk.maxwell.schema.ddl the mysql DDL schema parser lives here. -
-
Uses of Schema in com.zendesk.maxwell.recovery
Methods in com.zendesk.maxwell.recovery that return Schema Modifier and Type Method Description Schema
RecoverySchemaStore. getSchema()
-
Uses of Schema in com.zendesk.maxwell.replication
Methods in com.zendesk.maxwell.replication that return Schema Modifier and Type Method Description Schema
BinlogConnectorReplicator. getSchema()
Schema
Replicator. getSchema()
Methods in com.zendesk.maxwell.replication with parameters of type Schema Modifier and Type Method Description void
TableCache. processEvent(Schema schema, Filter filter, Boolean ignoreMissingSchema, Long tableId, String dbName, String tblName)
-
Uses of Schema in com.zendesk.maxwell.schema
Methods in com.zendesk.maxwell.schema that return Schema Modifier and Type Method Description Schema
SchemaCapturer. capture()
protected Schema
AbstractSchemaStore. captureSchema()
Schema
MysqlSavedSchema. getSchema()
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.Methods in com.zendesk.maxwell.schema with parameters of type Schema Modifier and Type Method Description MysqlSavedSchema
MysqlSavedSchema. createDerivedSchema(Schema newSchema, Position position, List<ResolvedSchemaChange> deltas)
List<String>
Schema. diff(Schema that, String thisName, String thatName)
boolean
Schema. equals(Schema that)
List<org.apache.commons.lang3.tuple.Pair<Schema.FullColumnDef,Schema.FullColumnDef>>
Schema. matchColumns(Schema thatSchema)
protected List<ResolvedSchemaChange>
AbstractSchemaStore. resolveSQL(Schema schema, String sql, String currentDatabase)
void
MysqlSavedSchema. setSchema(Schema s)
Constructors in com.zendesk.maxwell.schema with parameters of type Schema Constructor Description MysqlSavedSchema(MaxwellContext context, Schema schema, Position position)
MysqlSavedSchema(Long serverID, CaseSensitivity sensitivity, Schema schema, Position position)
MysqlSavedSchema(Long serverID, CaseSensitivity sensitivity, Schema schema, Position position, long baseSchemaID, List<ResolvedSchemaChange> deltas)
-
Uses of Schema in com.zendesk.maxwell.schema.ddl
Methods in com.zendesk.maxwell.schema.ddl with parameters of type Schema Modifier and Type Method Description void
ResolvedDatabaseAlter. apply(Schema schema)
void
ResolvedDatabaseCreate. apply(Schema schema)
void
ResolvedDatabaseDrop. apply(Schema schema)
abstract void
ResolvedSchemaChange. apply(Schema originalSchema)
void
ResolvedTableAlter. apply(Schema schema)
void
ResolvedTableCreate. apply(Schema schema)
void
ResolvedTableDrop. apply(Schema schema)
ResolvedDatabaseAlter
DatabaseAlter. resolve(Schema s)
ResolvedDatabaseCreate
DatabaseCreate. resolve(Schema schema)
ResolvedDatabaseDrop
DatabaseDrop. resolve(Schema schema)
abstract ResolvedSchemaChange
SchemaChange. resolve(Schema schema)
ResolvedTableAlter
TableAlter. resolve(Schema schema)
ResolvedTableCreate
TableCreate. resolve(Schema schema)
ResolvedTableDrop
TableDrop. resolve(Schema schema)
-