Interface TableSchemaComparison
-
- All Known Implementing Classes:
ComparedTable
@ThreadSafe public interface TableSchemaComparisonRepresents 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()StringgetTableName()
-
-
-
Method Detail
-
getTableName
String getTableName()
-
getColumns
Iterable<? extends SchemaElementComparison.ColumnComparison> getColumns()
-
getIndexes
Iterable<? extends SchemaElementComparison.IndexComparison> getIndexes()
-
-