Uses of Class
org.apache.flink.table.catalog.ObjectPath
Packages that use ObjectPath
Package
Description
-
Uses of ObjectPath in org.apache.flink.table.catalog
Methods in org.apache.flink.table.catalog that return ObjectPathModifier and TypeMethodDescriptionstatic ObjectPathObjectPath.fromString(String fullName) ObjectIdentifier.toObjectPath()Convert thisObjectIdentifiertoObjectPath.Methods in org.apache.flink.table.catalog with parameters of type ObjectPathModifier and TypeMethodDescriptionvoidCatalog.alterFunction(ObjectPath functionPath, CatalogFunction newFunction, boolean ignoreIfNotExists) Modify an existing function.default voidCatalog.alterModel(ObjectPath modelPath, CatalogModel newModel, boolean ignoreIfNotExists) Modifies an existing model.voidCatalog.alterPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogPartition newPartition, boolean ignoreIfNotExists) Alter a partition.voidCatalog.alterPartitionColumnStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogColumnStatistics columnStatistics, boolean ignoreIfNotExists) Update the column statistics of a table partition.voidCatalog.alterPartitionStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogTableStatistics partitionStatistics, boolean ignoreIfNotExists) Update the statistics of a table partition.voidCatalog.alterTable(ObjectPath tablePath, CatalogBaseTable newTable, boolean ignoreIfNotExists) Modifies an existing table or view.default voidCatalog.alterTable(ObjectPath tablePath, CatalogBaseTable newTable, List<TableChange> tableChanges, boolean ignoreIfNotExists) Modifies an existing table or view.voidCatalog.alterTableColumnStatistics(ObjectPath tablePath, CatalogColumnStatistics columnStatistics, boolean ignoreIfNotExists) Update the column statistics of a table.voidCatalog.alterTableStatistics(ObjectPath tablePath, CatalogTableStatistics tableStatistics, boolean ignoreIfNotExists) Update the statistics of a table.default List<CatalogColumnStatistics>Catalog.bulkGetPartitionColumnStatistics(ObjectPath tablePath, List<CatalogPartitionSpec> partitionSpecs) Get a list of column statistics for given partitions.default List<CatalogTableStatistics>Catalog.bulkGetPartitionStatistics(ObjectPath tablePath, List<CatalogPartitionSpec> partitionSpecs) Get a list of statistics of given partitions.voidCatalog.createFunction(ObjectPath functionPath, CatalogFunction function, boolean ignoreIfExists) Create a function.default voidCatalog.createModel(ObjectPath modelPath, CatalogModel model, boolean ignoreIfExists) Creates a new model.voidCatalog.createPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogPartition partition, boolean ignoreIfExists) Create a partition.voidCatalog.createTable(ObjectPath tablePath, CatalogBaseTable table, boolean ignoreIfExists) Creates a new table or view.voidCatalog.dropFunction(ObjectPath functionPath, boolean ignoreIfNotExists) Drop a function.default voidCatalog.dropModel(ObjectPath modelPath, boolean ignoreIfNotExists) Drop a model.voidCatalog.dropPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, boolean ignoreIfNotExists) Drop a partition.voidCatalog.dropTable(ObjectPath tablePath, boolean ignoreIfNotExists) Drop a table or view.booleanCatalog.functionExists(ObjectPath functionPath) Check whether a function exists or not.Catalog.getFunction(ObjectPath functionPath) Get the function.default CatalogModelCatalog.getModel(ObjectPath modelPath) Returns aCatalogModelidentified by the givenObjectPath.Catalog.getPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec) Get a partition of the given table.Catalog.getPartitionColumnStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec) Get the column statistics of a partition.Catalog.getPartitionStatistics(ObjectPath tablePath, CatalogPartitionSpec partitionSpec) Get the statistics of a partition.default ProcedureCatalog.getProcedure(ObjectPath procedurePath) Get the procedure.Catalog.getTable(ObjectPath tablePath) default CatalogBaseTableCatalog.getTable(ObjectPath tablePath, long timestamp) Catalog.getTableColumnStatistics(ObjectPath tablePath) Get the column statistics of a table.Catalog.getTableStatistics(ObjectPath tablePath) Get the statistics of a table.Catalog.listPartitions(ObjectPath tablePath) Get CatalogPartitionSpec of all partitions of the table.Catalog.listPartitions(ObjectPath tablePath, CatalogPartitionSpec partitionSpec) Get CatalogPartitionSpec of all partitions that is under the given CatalogPartitionSpec in the table.Catalog.listPartitionsByFilter(ObjectPath tablePath, List<Expression> filters) Get CatalogPartitionSpec of partitions by expression filters in the table.default booleanCatalog.modelExists(ObjectPath modelPath) Check if a model exists in this catalog.TemporaryOperationListener.onCreateTemporaryFunction(ObjectPath functionPath, CatalogFunction function) This method is called when a temporary function is to be created in this catalog.TemporaryOperationListener.onCreateTemporaryModel(ObjectPath modelPath, CatalogModel model) This method is called when a temporary model is to be created in this catalog.TemporaryOperationListener.onCreateTemporaryTable(ObjectPath tablePath, CatalogBaseTable table) This method is called when a temporary table or view is to be created in this catalog.voidTemporaryOperationListener.onDropTemporaryFunction(ObjectPath functionPath) This method is called when a temporary function in this catalog is to be dropped.voidTemporaryOperationListener.onDropTemporaryModel(ObjectPath modelPath) This method is called when a temporary model in this catalog is to be dropped.voidTemporaryOperationListener.onDropTemporaryTable(ObjectPath tablePath) This method is called when a temporary table or view in this catalog is to be dropped.booleanCatalog.partitionExists(ObjectPath tablePath, CatalogPartitionSpec partitionSpec) Check whether a partition exists or not.default voidCatalog.renameModel(ObjectPath modelPath, String newModelName, boolean ignoreIfNotExists) Rename an existing model.voidCatalog.renameTable(ObjectPath tablePath, String newTableName, boolean ignoreIfNotExists) Rename an existing table or view.booleanCatalog.tableExists(ObjectPath tablePath) Check if a table or view exists in this catalog. -
Uses of ObjectPath in org.apache.flink.table.catalog.exceptions
Constructors in org.apache.flink.table.catalog.exceptions with parameters of type ObjectPathModifierConstructorDescriptionFunctionAlreadyExistException(String catalogName, ObjectPath functionPath) FunctionAlreadyExistException(String catalogName, ObjectPath functionPath, Throwable cause) FunctionNotExistException(String catalogName, ObjectPath functionPath) FunctionNotExistException(String catalogName, ObjectPath functionPath, Throwable cause) ModelAlreadyExistException(String catalogName, ObjectPath modelPath) ModelAlreadyExistException(String catalogName, ObjectPath modelPath, Throwable cause) ModelNotExistException(String catalogName, ObjectPath modelPath) ModelNotExistException(String catalogName, ObjectPath modelPath, Throwable cause) PartitionAlreadyExistsException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec) PartitionAlreadyExistsException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec, Throwable cause) PartitionNotExistException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec) PartitionNotExistException(String catalogName, ObjectPath tablePath, CatalogPartitionSpec partitionSpec, Throwable cause) PartitionSpecInvalidException(String catalogName, List<String> partitionKeys, ObjectPath tablePath, CatalogPartitionSpec partitionSpec) PartitionSpecInvalidException(String catalogName, List<String> partitionKeys, ObjectPath tablePath, CatalogPartitionSpec partitionSpec, Throwable cause) ProcedureNotExistException(String catalogName, ObjectPath procedurePath) ProcedureNotExistException(String catalogName, ObjectPath procedurePath, Throwable cause) TableAlreadyExistException(String catalogName, ObjectPath tablePath) TableAlreadyExistException(String catalogName, ObjectPath tablePath, Throwable cause) TableNotExistException(String catalogName, ObjectPath tablePath) TableNotExistException(String catalogName, ObjectPath tablePath, Throwable cause) TableNotPartitionedException(String catalogName, ObjectPath tablePath) TableNotPartitionedException(String catalogName, ObjectPath tablePath, Throwable cause) TablePartitionedException(String catalogName, ObjectPath tablePath) TablePartitionedException(String catalogName, ObjectPath tablePath, Throwable cause) -
Uses of ObjectPath in org.apache.flink.table.legacy.factories
Methods in org.apache.flink.table.legacy.factories with parameters of type ObjectPathModifier and TypeMethodDescriptionTableSinkFactory.createTableSink(ObjectPath tablePath, CatalogTable table) Deprecated.default TableSource<T>TableSourceFactory.createTableSource(ObjectPath tablePath, CatalogTable table) Deprecated.TableSourceFactory.Contextcontains more information, and already contains table schema too.
TableSinkFactory.Contextcontains more information, and already contains table schema too.