Class YugabyteDBTable
- java.lang.Object
-
- migratedb.v1.core.internal.database.base.BaseSchemaObject
-
- migratedb.v1.core.internal.database.base.BaseTable
-
- migratedb.v1.core.internal.database.postgresql.PostgreSQLTable
-
- migratedb.v1.core.internal.database.yugabytedb.YugabyteDBTable
-
- All Implemented Interfaces:
SchemaObject,Table
public class YugabyteDBTable extends PostgreSQLTable
-
-
Field Summary
-
Fields inherited from class migratedb.v1.core.internal.database.base.BaseSchemaObject
jdbcTemplate
-
-
Constructor Summary
Constructors Constructor Description YugabyteDBTable(JdbcTemplate jdbcTemplate, YugabyteDBDatabase database, YugabyteDBSchema schema, String name)
-
Method Summary
-
Methods inherited from class migratedb.v1.core.internal.database.postgresql.PostgreSQLTable
doExists, doLock
-
Methods inherited from class migratedb.v1.core.internal.database.base.BaseTable
doUnlock, exists, exists, lock, unlock
-
Methods inherited from class migratedb.v1.core.internal.database.base.BaseSchemaObject
getDatabase, getName, getSchema, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface migratedb.v1.core.api.internal.database.base.SchemaObject
getDatabase, getName, getSchema, toString
-
-
-
-
Constructor Detail
-
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.
-
-