Uses of Class
com.zendesk.maxwell.schema.Table
-
Packages that use Table Package Description com.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 Table in com.zendesk.maxwell.replication
Methods in com.zendesk.maxwell.replication that return Table Modifier and Type Method Description Table
TableCache. getTable(Long tableId)
Methods in com.zendesk.maxwell.replication with parameters of type Table Modifier and Type Method Description List<RowMap>
BinlogConnectorEvent. jsonMaps(Table table, long lastHeartbeatRead, String rowQuery)
-
Uses of Table in com.zendesk.maxwell.schema
Methods in com.zendesk.maxwell.schema that return Table Modifier and Type Method Description Table
Database. buildTable(String name, String charset)
Table
Database. buildTable(String name, String charset, List<ColumnDef> list, List<String> pks)
Table
Table. copy()
Table
Database. findTable(String name)
Table
Database. findTableOrThrow(String table)
Table
Schema.FullColumnDef. getTable()
Methods in com.zendesk.maxwell.schema that return types with arguments of type Table Modifier and Type Method Description List<Table>
Database. getTableList()
Methods in com.zendesk.maxwell.schema with parameters of type Table Modifier and Type Method Description void
Database. addTable(Table table)
void
Table. diff(List<String> diffs, Table other, String nameA, String nameB)
Constructors in com.zendesk.maxwell.schema with parameters of type Table Constructor Description FullColumnDef(Database db, Table table, ColumnDef columnDef)
Constructor parameters in com.zendesk.maxwell.schema with type arguments of type Table Constructor Description Database(String name, List<Table> tables, String charset)
-
Uses of Table in com.zendesk.maxwell.schema.ddl
Fields in com.zendesk.maxwell.schema.ddl declared as Table Modifier and Type Field Description Table
ResolvedTableCreate. def
Table
ResolvedTableAlter. newTable
Table
ResolvedTableAlter. oldTable
Methods in com.zendesk.maxwell.schema.ddl with parameters of type Table Modifier and Type Method Description void
RenameColumnMod. apply(Table table, List<DeferredPositionUpdate> deferred)
int
ColumnPosition. index(Table t, Integer defaultIndex)
Constructors in com.zendesk.maxwell.schema.ddl with parameters of type Table Constructor Description ResolvedTableAlter(String database, String table, Table oldTable, Table newTable)
ResolvedTableCreate(Table t)
-