Skip to content

Commit 8724348

Browse files
committed
fix
1 parent 2ac5929 commit 8724348

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

flink-python/pyflink/table/tests/test_table_environment_completeness.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def excluded_methods(cls):
4444
"from",
4545
"registerFunction",
4646
"fromCall",
47+
"fromModelPath",
4748
}
4849

4950

flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/catalog/ContextResolvedModel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
package org.apache.flink.table.catalog;
2020

21-
import org.apache.flink.annotation.Internal;
21+
import org.apache.flink.annotation.PublicEvolving;
2222
import org.apache.flink.table.factories.FactoryUtil;
2323
import org.apache.flink.util.Preconditions;
2424

@@ -47,7 +47,7 @@
4747
* specific {@link Catalog}/{@link CatalogManager} instances. For example, the same {@link
4848
* ResolvedCatalogModel} can be temporary for one catalog, but permanent for another one.
4949
*/
50-
@Internal
50+
@PublicEvolving
5151
public final class ContextResolvedModel {
5252

5353
private static final AtomicInteger uniqueId = new AtomicInteger(0);

0 commit comments

Comments
 (0)