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 SchemaRecoverySchemaStore. getSchema() -
Uses of Schema in com.zendesk.maxwell.replication
Methods in com.zendesk.maxwell.replication that return Schema Modifier and Type Method Description SchemaBinlogConnectorReplicator. getSchema()SchemaReplicator. getSchema()Methods in com.zendesk.maxwell.replication with parameters of type Schema Modifier and Type Method Description voidTableCache. 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 SchemaSchemaCapturer. capture()protected SchemaAbstractSchemaStore. captureSchema()SchemaMysqlSavedSchema. getSchema()SchemaMysqlSchemaStore. getSchema()SchemaSchemaStore. 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 MysqlSavedSchemaMysqlSavedSchema. createDerivedSchema(Schema newSchema, Position position, List<ResolvedSchemaChange> deltas)List<String>Schema. diff(Schema that, String thisName, String thatName)booleanSchema. 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)voidMysqlSavedSchema. 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 voidResolvedDatabaseAlter. apply(Schema schema)voidResolvedDatabaseCreate. apply(Schema schema)voidResolvedDatabaseDrop. apply(Schema schema)abstract voidResolvedSchemaChange. apply(Schema originalSchema)voidResolvedTableAlter. apply(Schema schema)voidResolvedTableCreate. apply(Schema schema)voidResolvedTableDrop. apply(Schema schema)ResolvedDatabaseAlterDatabaseAlter. resolve(Schema s)ResolvedDatabaseCreateDatabaseCreate. resolve(Schema schema)ResolvedDatabaseDropDatabaseDrop. resolve(Schema schema)abstract ResolvedSchemaChangeSchemaChange. resolve(Schema schema)ResolvedTableAlterTableAlter. resolve(Schema schema)ResolvedTableCreateTableCreate. resolve(Schema schema)ResolvedTableDropTableDrop. resolve(Schema schema)
-