Package liquibase.snapshot.jvm
Class ColumnSnapshotGeneratorOracle
java.lang.Object
liquibase.snapshot.jvm.JdbcSnapshotGenerator
liquibase.snapshot.jvm.ColumnSnapshotGenerator
liquibase.snapshot.jvm.ColumnSnapshotGeneratorOracle
- All Implemented Interfaces:
SnapshotGenerator
Oracle Database-specific parts of ColumnSnapshotGenerator
-
Field Summary
Fields inherited from class liquibase.snapshot.jvm.ColumnSnapshotGenerator
COLUMN_DEF_COL
Fields inherited from interface liquibase.snapshot.SnapshotGenerator
PRIORITY_ADDITIONAL, PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_NONE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getPriority
(Class<? extends DatabaseObject> objectType, Database database) Inquire if this SnapshotGenerator is capable of snapshotting objects of type objectType (e.g.protected DataType
readDataType
(CachedRow columnMetadataResultSet, Column column, Database database) Processes metadata of a column, e.g. name, type and default value.Class<? extends SnapshotGenerator>[]
replaces()
Returns classes (and superclasses) that this SnapshotGenerator replaces.Methods inherited from class liquibase.snapshot.jvm.ColumnSnapshotGenerator
addTo, readColumn, readDefaultValue, setAutoIncrementDetails, snapshotObject
Methods inherited from class liquibase.snapshot.jvm.JdbcSnapshotGenerator
addStatusListener, addsTo, cleanNameFromDatabase, getDatabaseCatalogNames, shouldAddTo, snapshot, updateListeners
-
Constructor Details
-
ColumnSnapshotGeneratorOracle
public ColumnSnapshotGeneratorOracle()
-
-
Method Details
-
getPriority
Description copied from interface:SnapshotGenerator
Inquire if this SnapshotGenerator is capable of snapshotting objects of type objectType (e.g. Table, Index, View etc.) in the DBMS database (e.g. Oracle, Postgres, HyperSQL etc.) A return priority of > 0 will be interpreted as capable. The highest priority for an objectType-database combination wins.- Specified by:
getPriority
in interfaceSnapshotGenerator
- Overrides:
getPriority
in classJdbcSnapshotGenerator
- Parameters:
objectType
- The object type we are asked to snapshotdatabase
- The DBMS for which the snapshotting should be done- Returns:
- An integer of PRIORITY_... constants indicating our capability and willingness to snapshot
-
replaces
Description copied from interface:SnapshotGenerator
Returns classes (and superclasses) that this SnapshotGenerator replaces. Return null or empty array to not affect the SnapshotGeneratorChain.- Specified by:
replaces
in interfaceSnapshotGenerator
- Overrides:
replaces
in classJdbcSnapshotGenerator
-
readDataType
protected DataType readDataType(CachedRow columnMetadataResultSet, Column column, Database database) Description copied from class:ColumnSnapshotGenerator
Processes metadata of a column, e.g. name, type and default value. We start with the result of the JDBCDatabaseMetaData
.getColumns() method. Depending on Database, additional columns might be present.- Overrides:
readDataType
in classColumnSnapshotGenerator
- Parameters:
columnMetadataResultSet
- the result from the JDBC getColumns() call for the columncolumn
- logical definition of the column (object form)database
- the database from which the column originates- Returns:
- a DataType object with detailed information about the type
-