Interface TableSchemaComparison
-
- All Known Implementing Classes:
ComparedTable
@ThreadSafe public interface TableSchemaComparison
Represents a comparison between the "actual" and "expected" representations of a database table schema- Since:
- 5.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<? extends SchemaElementComparison.ColumnComparison>
getColumns()
Iterable<? extends SchemaElementComparison.IndexComparison>
getIndexes()
String
getTableName()
-
-
-
Method Detail
-
getTableName
String getTableName()
-
getColumns
Iterable<? extends SchemaElementComparison.ColumnComparison> getColumns()
-
getIndexes
Iterable<? extends SchemaElementComparison.IndexComparison> getIndexes()
-
-