Class AnalyzeTableOperation
- java.lang.Object
-
- org.apache.flink.table.operations.ddl.AnalyzeTableOperation
-
-
Constructor Summary
Constructors Constructor Description AnalyzeTableOperation(org.apache.flink.table.catalog.ObjectIdentifier tableIdentifier, List<org.apache.flink.table.catalog.CatalogPartitionSpec> partitionSpecs, List<org.apache.flink.table.catalog.Column> columns)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
asSummaryString()
Returns a string that summarizes this operation for printing to a console.List<org.apache.flink.table.catalog.Column>
getColumns()
Optional<List<org.apache.flink.table.catalog.CatalogPartitionSpec>>
getPartitionSpecs()
Returns Optional.empty() if the table is not a partition table, else returns the given partition specs.org.apache.flink.table.catalog.ObjectIdentifier
getTableIdentifier()
-
-
-
Method Detail
-
getTableIdentifier
public org.apache.flink.table.catalog.ObjectIdentifier getTableIdentifier()
-
getPartitionSpecs
public Optional<List<org.apache.flink.table.catalog.CatalogPartitionSpec>> getPartitionSpecs()
Returns Optional.empty() if the table is not a partition table, else returns the given partition specs.
-
getColumns
public List<org.apache.flink.table.catalog.Column> getColumns()
-
asSummaryString
public String asSummaryString()
Description copied from interface:Operation
Returns a string that summarizes this operation for printing to a console. An implementation might skip very specific properties.- Specified by:
asSummaryString
in interfaceOperation
- Returns:
- summary string of this operation for debugging purposes
-
-