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 String
getComment()
Map<String,String>
getOptions()
List<String>
getPartitionKeys()
org.apache.flink.table.legacy.api.TableSchema
getSchema()
boolean
isPartitioned()
-
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:
isPartitioned
in interfaceorg.apache.flink.table.catalog.CatalogTable
-
getPartitionKeys
public List<String> getPartitionKeys()
- Specified by:
getPartitionKeys
in interfaceorg.apache.flink.table.catalog.CatalogTable
-
getOptions
public Map<String,String> getOptions()
- Specified by:
getOptions
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getSchema
public org.apache.flink.table.legacy.api.TableSchema getSchema()
- Specified by:
getSchema
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getComment
public String getComment()
- Specified by:
getComment
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
-