File tree Expand file tree Collapse file tree 2 files changed +2
-13
lines changed
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 1919package org .apache .flink .table .api ;
2020
2121import org .apache .flink .annotation .PublicEvolving ;
22- import org .apache .flink .table .catalog .ContextResolvedModel ;
2322import org .apache .flink .table .catalog .ResolvedSchema ;
2423import org .apache .flink .types .ColumnList ;
2524
6059@ PublicEvolving
6160public interface Model {
6261
63- /**
64- * Returns the underlying resolved model.
65- *
66- * <p>This method provides access to the internal representation of the model, including its
67- * configuration, input/output schemas, and other relevant details.
68- *
69- * @return the context resolved model metadata.
70- */
71- ContextResolvedModel getModel ();
72-
7362 /**
7463 * Returns the resolved input schema of this model.
7564 *
Original file line number Diff line number Diff line change 1818
1919package org .apache .flink .table .catalog ;
2020
21- import org .apache .flink .annotation .PublicEvolving ;
21+ import org .apache .flink .annotation .Internal ;
2222import org .apache .flink .table .factories .FactoryUtil ;
2323import org .apache .flink .util .Preconditions ;
2424
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- @ PublicEvolving
50+ @ Internal
5151public final class ContextResolvedModel {
5252
5353 private static final AtomicInteger uniqueId = new AtomicInteger (0 );
You can’t perform that action at this time.
0 commit comments