Package org.apache.flink.table.catalog
Class AbstractCatalogTable
- java.lang.Object
-
- org.apache.flink.table.catalog.AbstractCatalogTable
-
- All Implemented Interfaces:
org.apache.flink.table.catalog.CatalogBaseTable,org.apache.flink.table.catalog.CatalogTable
- Direct Known Subclasses:
ConnectorCatalogTable
@Internal public abstract class AbstractCatalogTable extends Object implements org.apache.flink.table.catalog.CatalogTable
An abstract catalog table.
-
-
Constructor Summary
Constructors Constructor Description AbstractCatalogTable(org.apache.flink.table.legacy.api.TableSchema tableSchema, List<String> partitionKeys, Map<String,String> options, String comment)AbstractCatalogTable(org.apache.flink.table.legacy.api.TableSchema tableSchema, Map<String,String> options, String comment)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetComment()Map<String,String>getOptions()List<String>getPartitionKeys()org.apache.flink.table.legacy.api.TableSchemagetSchema()booleanisPartitioned()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
isPartitioned
public boolean isPartitioned()
- Specified by:
isPartitionedin interfaceorg.apache.flink.table.catalog.CatalogTable
-
getPartitionKeys
public List<String> getPartitionKeys()
- Specified by:
getPartitionKeysin interfaceorg.apache.flink.table.catalog.CatalogTable
-
getOptions
public Map<String,String> getOptions()
- Specified by:
getOptionsin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getSchema
public org.apache.flink.table.legacy.api.TableSchema getSchema()
- Specified by:
getSchemain interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getComment
public String getComment()
- Specified by:
getCommentin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
-