Class YugabyteDBTable
java.lang.Object
migratedb.v1.core.internal.database.base.BaseSchemaObject<D,S>
migratedb.v1.core.internal.database.base.BaseTable<PostgreSQLDatabase,PostgreSQLSchema>
migratedb.v1.core.internal.database.postgresql.PostgreSQLTable
migratedb.v1.core.internal.database.yugabytedb.YugabyteDBTable
- All Implemented Interfaces:
SchemaObject<PostgreSQLDatabase,,PostgreSQLSchema> Table<PostgreSQLDatabase,PostgreSQLSchema>
-
Field Summary
Fields inherited from class migratedb.v1.core.internal.database.base.BaseSchemaObject
database, jdbcTemplate, name, schema -
Constructor Summary
ConstructorsConstructorDescriptionYugabyteDBTable(JdbcTemplate jdbcTemplate, YugabyteDBDatabase database, YugabyteDBSchema schema, String name) -
Method Summary
Methods inherited from class migratedb.v1.core.internal.database.postgresql.PostgreSQLTable
doDrop, doExists, doLockMethods inherited from class migratedb.v1.core.internal.database.base.BaseTable
doUnlock, exists, exists, lock, unlockMethods inherited from class migratedb.v1.core.internal.database.base.BaseSchemaObject
drop, getDatabase, getName, getSchema, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface migratedb.v1.core.api.internal.database.base.SchemaObject
drop, getDatabase, getName, getSchema, toString
-
Constructor Details
-
YugabyteDBTable
public YugabyteDBTable(JdbcTemplate jdbcTemplate, YugabyteDBDatabase database, YugabyteDBSchema schema, String name) - Parameters:
jdbcTemplate- The JDBC template for communicating with the DB.database- The database-specific support.schema- The schema this table lives in.name- The name of the table.
-