Package org.apache.flink.table.catalog
Interface Index
-
- All Known Implementing Classes:
DefaultIndex
@PublicEvolving public interface IndexAn index is a copy of selected columns of data, from a table, that is designed to enable very efficient search. An index normally includes a "key" or direct link to the original row of data from which it was copied, to allow the complete row to be retrieved efficiently.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringasSummaryString()Print the index in a readable way.List<String>getColumns()Get the columns of this index.StringgetName()Get the name of this index.
-