Class AnalyzeTableOperation
java.lang.Object
org.apache.flink.table.operations.ddl.AnalyzeTableOperation
- All Implemented Interfaces:
Operation
Operation to describe an
ANALYZE TABLE statement.-
Constructor Summary
ConstructorsConstructorDescriptionAnalyzeTableOperation(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
Modifier and TypeMethodDescriptionReturns a string that summarizes this operation for printing to a console.List<org.apache.flink.table.catalog.Column>Returns Optional.empty() if the table is not a partition table, else returns the given partition specs.org.apache.flink.table.catalog.ObjectIdentifier
-
Constructor Details
-
AnalyzeTableOperation
-
-
Method Details
-
getTableIdentifier
public org.apache.flink.table.catalog.ObjectIdentifier getTableIdentifier() -
getPartitionSpecs
Returns Optional.empty() if the table is not a partition table, else returns the given partition specs. -
getColumns
-
asSummaryString
Description copied from interface:OperationReturns a string that summarizes this operation for printing to a console. An implementation might skip very specific properties.- Specified by:
asSummaryStringin interfaceOperation- Returns:
- summary string of this operation for debugging purposes
-