Package org.apache.flink.table.catalog
Class ExternalCatalogTable
- java.lang.Object
-
- org.apache.flink.table.catalog.ExternalCatalogTable
-
- All Implemented Interfaces:
org.apache.flink.table.catalog.CatalogBaseTable,org.apache.flink.table.catalog.CatalogTable
@Internal public final class ExternalCatalogTable extends Object implements org.apache.flink.table.catalog.CatalogTable
HelperCatalogTablefor representing a table that is backed by some inline connector (i.e.DataStreamorTableResult.collect()).
-
-
Constructor Summary
Constructors Constructor Description ExternalCatalogTable(org.apache.flink.table.api.Schema schema)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.table.catalog.CatalogBaseTablecopy()org.apache.flink.table.catalog.CatalogTablecopy(Map<String,String> options)StringgetComment()Optional<String>getDescription()Optional<String>getDetailedDescription()Map<String,String>getOptions()List<String>getPartitionKeys()org.apache.flink.table.api.SchemagetUnresolvedSchema()booleanisPartitioned()
-
-
-
Method Detail
-
getUnresolvedSchema
public org.apache.flink.table.api.Schema getUnresolvedSchema()
- Specified by:
getUnresolvedSchemain interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getOptions
public Map<String,String> getOptions()
- Specified by:
getOptionsin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getComment
public String getComment()
- Specified by:
getCommentin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
copy
public org.apache.flink.table.catalog.CatalogBaseTable copy()
- Specified by:
copyin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getDescription
public Optional<String> getDescription()
- Specified by:
getDescriptionin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getDetailedDescription
public Optional<String> getDetailedDescription()
- Specified by:
getDetailedDescriptionin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
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
-
-