Uses of Class
com.continuent.tungsten.replicator.database.Table

Packages that use Table
com.continuent.tungsten.replicator   
com.continuent.tungsten.replicator.applier.batch   
com.continuent.tungsten.replicator.consistency   
com.continuent.tungsten.replicator.database   
com.continuent.tungsten.replicator.heartbeat   
com.continuent.tungsten.replicator.management.tungsten   
com.continuent.tungsten.replicator.prefetch   
 

Uses of Table in com.continuent.tungsten.replicator
 

Methods in com.continuent.tungsten.replicator that return Table
static Table Version.getVersionTableDefinition(java.lang.String schema)
           
 

Uses of Table in com.continuent.tungsten.replicator.applier.batch
 

Fields in com.continuent.tungsten.replicator.applier.batch declared as Table
 Table CsvInfo.baseTableMetadata
           
 Table CsvInfo.stageTableMetadata
           
 

Uses of Table in com.continuent.tungsten.replicator.consistency
 

Fields in com.continuent.tungsten.replicator.consistency declared as Table
protected  Table ConsistencyCheckAbstract.table
           
 

Methods in com.continuent.tungsten.replicator.consistency that return Table
static Table ConsistencyTable.getConsistencyTableDefinition(java.lang.String schema)
           
 

Methods in com.continuent.tungsten.replicator.consistency with parameters of type Table
static ConsistencyCheck ConsistencyCheckFactory.createConsistencyCheck(int id, Table table, int rowOffset, int rowLimit, java.lang.String method, boolean checkColumnNames, boolean checkColumnTypes)
           
 

Constructors in com.continuent.tungsten.replicator.consistency with parameters of type Table
ConsistencyCheckAbstract(int id, Table table, java.lang.String method)
           
ConsistencyCheckMD5(int id, Table table, boolean checkColumnNames, boolean checkColumnTypes)
          Creates a new ConsistencyCheckMD5 object
ConsistencyCheckMD5(int id, Table table, int rowFrom, int rowLimit, boolean checkColumnNames, boolean checkColumnTypes)
          Creates a new ConsistencyCheckMD5 object
ConsistencyCheckMD5(int id, Table table, int rowFrom, int rowLimit, boolean checkColumnNames, boolean checkColumnTypes, boolean usePKForLimit)
          Creates a new ConsistencyCheckMD5 object
 

Uses of Table in com.continuent.tungsten.replicator.database
 

Methods in com.continuent.tungsten.replicator.database that return Table
 Table Table.clone()
          
 Table OracleDatabase.findTable(int tableID)
          Return the Table with all it's accompanying Columns that matches tableID.
 Table AbstractDatabase.findTable(int tableID)
           
 Table Database.findTable(int tableID)
          Return the Table with all its current accompanying Columns that matches tableID.
 Table OracleDatabase.findTable(int tableID, java.lang.String scn)
          Return the Table with all its accompanying Columns at the provided scn that matches tableID.
 Table AbstractDatabase.findTable(int tableID, java.lang.String scn)
          Return the Table with all its accompanying Columns at the provided scn that matches tableID.
 Table Database.findTable(int tableID, java.lang.String scn)
          Return the Table with all its accompanying Columns at the provided scn that matches tableID.
 Table AbstractDatabase.findTable(java.lang.String schemaName, java.lang.String tableName)
          Return the Table with all its accompanying Columns.
 Table Database.findTable(java.lang.String schemaName, java.lang.String tableName)
          Return the Table with all its accompanying Columns.
 Table TableMetadataCache.retrieve(java.lang.String schema, java.lang.String tableName)
          Retrieves table metadata or returns null if it is not in the cache.
 

Methods in com.continuent.tungsten.replicator.database that return types with arguments of type Table
 java.util.ArrayList<Table> AbstractDatabase.getTables(java.lang.String schemaName, boolean baseTablesOnly)
          Implement ability to fetch tables.
 java.util.ArrayList<Table> Database.getTables(java.lang.String schema, boolean baseTablesOnly)
          Returns a list of tables available in the schema
 

Methods in com.continuent.tungsten.replicator.database with parameters of type Table
 void AbstractDatabase.consistencyCheck(Table ct, ConsistencyCheck cc)
          Runs consistency check transaction
 void Database.consistencyCheck(Table ct, ConsistencyCheck cc)
          Runs consistency check transaction
 void AbstractDatabase.consistencyCheck(Table ct, ConsistencyCheck cc, java.lang.String masterCrc, int masterCnt)
          Runs consistency check transaction:
a.) If masterCrc==null - normal (master side) consistency check is executed, which is expected to be replicated to the slaves by replication.
b.) If masterCrc!=null, then masterCrc and masterCnt are put into corresponding columns, while executed check's results are put into this_crc and this_cnt columns.
 void Database.consistencyCheck(Table ct, ConsistencyCheck cc, java.lang.String masterCrc, int masterCnt)
          Runs consistency check transaction:
a.) If masterCrc==null - normal (master side) consistency check is executed, which is expected to be replicated to the slaves by replication.
b.) If masterCrc!=null, then masterCrc and masterCnt are put into corresponding columns, while executed check's results are put into this_crc and this_cnt columns.
 void OracleDatabase.createTable(Table t, boolean replace)
           
 void PostgreSQLDatabase.createTable(Table t, boolean replace)
          Creates a table using the supplied table definition.
 void AbstractDatabase.createTable(Table t, boolean replace)
          Creates a table using the supplied table definition.
 void GreenplumDatabase.createTable(Table t, boolean replace)
          Creates a table using the supplied table definition.
 void VerticaDatabase.createTable(Table t, boolean replace)
          Ensure projection is created for new table.
 void Database.createTable(Table table, boolean replace)
          Creates a table using the supplied table definition.
 void MySQLDatabase.createTable(Table t, boolean replace)
          This should not be called for MySQL but we have a version of it anyway because it's better not to have broken code.
 void DrizzleDatabase.createTable(Table t, boolean replace)
           
 void AbstractDatabase.createTable(Table table, boolean replace, java.lang.String tungstenTableType)
          Stub routine that ignores table type.
 void Database.createTable(Table table, boolean replace, java.lang.String tungstenTableType)
          Creates a table using the supplied table definition and the provided table type.
 void MySQLDatabase.createTable(Table t, boolean replace, java.lang.String tableType)
          Stub routine that ignores table type.
 void AbstractDatabase.createTable(Table table, boolean replace, java.lang.String tungstenSchema, java.lang.String tungstenTableType)
          
 void Database.createTable(Table table, boolean replace, java.lang.String tungstenSchema, java.lang.String tungstenTableType)
           
 void OracleDatabase.createTable(Table table, boolean replace, java.lang.String tungstenSchema, java.lang.String tungstenTableType, java.lang.String serviceName)
          
 void AbstractDatabase.createTable(Table table, boolean replace, java.lang.String tungstenSchema, java.lang.String tungstenTableType, java.lang.String serviceName)
          
 void Database.createTable(Table hbTable, boolean b, java.lang.String schema, java.lang.String tableType, java.lang.String serviceName)
           
 int AbstractDatabase.delete(Table table, boolean allRows)
          Deletes a row in a table.
 int Database.delete(Table table, boolean allRows)
          Deletes a row in a table.
 void PostgreSQLDatabase.dropTable(Table table)
          Drops an existing table.
 void AbstractDatabase.dropTable(Table table)
          Drops an existing table.
 void Database.dropTable(Table table)
          Drops an existing table.
 int AbstractDatabase.insert(Table table)
          Inserts a row into a table.
 int Database.insert(Table table)
          Inserts a row into a table.
 void TableMetadataCache.release(Table metadata)
          Call back to release a table metadata instance that is dropped from the cache.
 void AbstractDatabase.replace(Table table)
          Replaces a row in the table using the data supplied by the Table specification.
 void Database.replace(Table table)
          Replaces a row in the table using the data supplied by the Table specification.
 void TableMetadataCache.store(Table metadata)
          Store metadata for a table.
protected  boolean PostgreSQLDatabase.tableExists(Table t)
          Checks whether the given table exists in the currently connected database.
protected  boolean VerticaDatabase.tableExists(Table t)
          Checks whether the given table exists in the currently connected database using Vertica-specific v_catalog.tables view.
 int AbstractDatabase.update(Table table, java.util.ArrayList<Column> whereClause, java.util.ArrayList<Column> values)
          Updates on or more rows in a table.
 int Database.update(Table table, java.util.ArrayList<Column> whereClause, java.util.ArrayList<Column> values)
          Updates on or more rows in a table.
 

Uses of Table in com.continuent.tungsten.replicator.heartbeat
 

Methods in com.continuent.tungsten.replicator.heartbeat that return Table
 Table HeartbeatTable.getTable()
          Returns metadata used to create the underlying heartbeat table.
 

Uses of Table in com.continuent.tungsten.replicator.management.tungsten
 

Methods in com.continuent.tungsten.replicator.management.tungsten that return Table
static Table TungstenPlugin.findConsistencyTable(Database conn, java.lang.String replicatorSchema)
          Tries to locate consistency check table.
 

Methods in com.continuent.tungsten.replicator.management.tungsten with parameters of type Table
static int TungstenPlugin.findNextConsistencyId(Database conn, Table ct)
          Finds what ID should be used for the next consistency check.
 

Uses of Table in com.continuent.tungsten.replicator.prefetch
 

Methods in com.continuent.tungsten.replicator.prefetch that return Table
 Table KeySelect.getTable()
           
 

Constructors in com.continuent.tungsten.replicator.prefetch with parameters of type Table
KeySelect(Table table, Key key)
          Create a new instance.