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
HelperCatalogTable
for representing a table that is backed by some inline connector (i.e.DataStream
orTableResult.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.CatalogBaseTable
copy()
org.apache.flink.table.catalog.CatalogTable
copy(Map<String,String> options)
String
getComment()
Optional<String>
getDescription()
Optional<String>
getDetailedDescription()
Map<String,String>
getOptions()
List<String>
getPartitionKeys()
org.apache.flink.table.api.Schema
getUnresolvedSchema()
boolean
isPartitioned()
-
-
-
Method Detail
-
getUnresolvedSchema
public org.apache.flink.table.api.Schema getUnresolvedSchema()
- Specified by:
getUnresolvedSchema
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getOptions
public Map<String,String> getOptions()
- Specified by:
getOptions
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getComment
public String getComment()
- Specified by:
getComment
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
copy
public org.apache.flink.table.catalog.CatalogBaseTable copy()
- Specified by:
copy
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getDescription
public Optional<String> getDescription()
- Specified by:
getDescription
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getDetailedDescription
public Optional<String> getDetailedDescription()
- Specified by:
getDetailedDescription
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
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
-
-