Uses of Class
org.apache.flink.table.catalog.exceptions.TableNotExistException
Packages that use TableNotExistException
-
Uses of TableNotExistException in org.apache.flink.table.catalog
Methods in org.apache.flink.table.catalog that throw TableNotExistExceptionModifier and TypeMethodDescriptionvoidCatalog.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.voidCatalog.createPartition(ObjectPath tablePath, CatalogPartitionSpec partitionSpec, CatalogPartition partition, boolean ignoreIfExists) Create a partition.voidCatalog.dropTable(ObjectPath tablePath, boolean ignoreIfNotExists) Drop a table or view.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.voidCatalog.renameTable(ObjectPath tablePath, String newTableName, boolean ignoreIfNotExists) Rename an existing table or view.