Uses of Interface
org.apache.flink.table.catalog.CatalogTable
-
Packages that use CatalogTable Package Description org.apache.flink.table.catalog org.apache.flink.table.factories org.apache.flink.table.legacy.factories -
-
Uses of CatalogTable in org.apache.flink.table.catalog
Classes in org.apache.flink.table.catalog that implement CatalogTable Modifier and Type Class Description classDefaultCatalogTableDefault implementation of aCatalogTable.classResolvedCatalogTableA validatedCatalogTablethat is backed by the original metadata coming from theCatalogbut resolved by the framework.Methods in org.apache.flink.table.catalog that return CatalogTable Modifier and Type Method Description CatalogTableCatalogTable.Builder. build()CatalogTableCatalogTable. copy(Map<String,String> options)Returns a copy of thisCatalogTablewith given table optionsoptions.CatalogTableDefaultCatalogTable. copy(Map<String,String> options)static CatalogTableCatalogPropertiesUtil. deserializeCatalogTable(Map<String,String> properties)Deserializes the given map of string properties into an unresolvedCatalogTable.static CatalogTableCatalogPropertiesUtil. deserializeCatalogTable(Map<String,String> properties, String fallbackKey)Deserializes the given map of string properties into an unresolvedCatalogTable.static CatalogTableCatalogTable. fromProperties(Map<String,String> properties)Creates an instance ofCatalogTablefrom a map of string properties that were previously created withResolvedCatalogTable.toProperties().CatalogTableResolvedCatalogTable. getOrigin()static CatalogTableCatalogTable. of(Schema schema, String comment, List<String> partitionKeys, Map<String,String> options)Deprecated.Use the buildernewBuilder()instead.static CatalogTableCatalogTable. of(Schema schema, String comment, List<String> partitionKeys, Map<String,String> options, Long snapshot)Deprecated.Use the buildernewBuilder()instead.Constructors in org.apache.flink.table.catalog with parameters of type CatalogTable Constructor Description ResolvedCatalogTable(CatalogTable origin, ResolvedSchema resolvedSchema) -
Uses of CatalogTable in org.apache.flink.table.factories
Methods in org.apache.flink.table.factories that return CatalogTable Modifier and Type Method Description CatalogTableTableSinkFactoryContextImpl. getTable()Deprecated.CatalogTableTableSourceFactoryContextImpl. getTable()Deprecated.Constructors in org.apache.flink.table.factories with parameters of type CatalogTable Constructor 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. -
Uses of CatalogTable in org.apache.flink.table.legacy.factories
Methods in org.apache.flink.table.legacy.factories that return CatalogTable Modifier and Type Method Description CatalogTableTableSinkFactory.Context. getTable()CatalogTableTableSourceFactory.Context. getTable()Methods in org.apache.flink.table.legacy.factories with parameters of type CatalogTable Modifier and Type Method Description default TableSink<T>TableSinkFactory. createTableSink(ObjectPath tablePath, CatalogTable table)Deprecated.TableSinkFactory.Contextcontains more information, and already contains table schema too.default TableSource<T>TableSourceFactory. createTableSource(ObjectPath tablePath, CatalogTable table)Deprecated.TableSourceFactory.Contextcontains more information, and already contains table schema too.
-