| Package | Description |
|---|---|
| org.apache.flink.table.catalog | |
| org.apache.flink.table.factories |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultCatalogTable
Default implementation of a
CatalogTable. |
class |
ResolvedCatalogTable
A validated
CatalogTable that is backed by the original metadata coming from the Catalog but resolved by the framework. |
| Modifier and Type | Method and Description |
|---|---|
CatalogTable |
CatalogTable.Builder.build() |
CatalogTable |
CatalogTable.copy(Map<String,String> options)
Returns a copy of this
CatalogTable with given table options options. |
CatalogTable |
DefaultCatalogTable.copy(Map<String,String> options) |
static CatalogTable |
CatalogPropertiesUtil.deserializeCatalogTable(Map<String,String> properties)
Deserializes the given map of string properties into an unresolved
CatalogTable. |
static CatalogTable |
CatalogPropertiesUtil.deserializeCatalogTable(Map<String,String> properties,
String fallbackKey)
Deserializes the given map of string properties into an unresolved
CatalogTable. |
static CatalogTable |
CatalogTable.fromProperties(Map<String,String> properties)
Creates an instance of
CatalogTable from a map of string properties that were
previously created with ResolvedCatalogTable.toProperties(). |
CatalogTable |
ResolvedCatalogTable.getOrigin() |
static CatalogTable |
CatalogTable.of(Schema schema,
String comment,
List<String> partitionKeys,
Map<String,String> options)
Deprecated.
Use the builder
newBuilder() instead. |
static CatalogTable |
CatalogTable.of(Schema schema,
String comment,
List<String> partitionKeys,
Map<String,String> options,
Long snapshot)
Deprecated.
Use the builder
newBuilder() instead. |
| Constructor and Description |
|---|
ResolvedCatalogTable(CatalogTable origin,
ResolvedSchema resolvedSchema) |
| Modifier and Type | Method and Description |
|---|---|
CatalogTable |
TableSinkFactoryContextImpl.getTable()
Deprecated.
|
CatalogTable |
TableSinkFactory.Context.getTable() |
CatalogTable |
TableSourceFactoryContextImpl.getTable()
Deprecated.
|
CatalogTable |
TableSourceFactory.Context.getTable() |
| Modifier and Type | Method and Description |
|---|---|
default TableSink<T> |
TableSinkFactory.createTableSink(ObjectPath tablePath,
CatalogTable table)
Deprecated.
TableSinkFactory.Context contains more information, and already contains table schema too.
Please use TableSinkFactory.createTableSink(Context) instead. |
default TableSource<T> |
TableSourceFactory.createTableSource(ObjectPath tablePath,
CatalogTable table)
Deprecated.
TableSourceFactory.Context contains more information, and already contains table schema too.
Please use TableSourceFactory.createTableSource(Context) instead. |
| Constructor and Description |
|---|
TableSinkFactoryContextImpl(ObjectIdentifier identifier,
CatalogTable table,
org.apache.flink.configuration.ReadableConfig config,
boolean isBounded,
boolean isTemporary)
Deprecated.
|
TableSourceFactoryContextImpl(ObjectIdentifier identifier,
CatalogTable table,
org.apache.flink.configuration.ReadableConfig config,
boolean isTemporary)
Deprecated.
|
Copyright © 2014–2025 The Apache Software Foundation. All rights reserved.