Uses of Class
org.apache.flink.table.api.Schema
-
Packages that use Schema Package Description org.apache.flink.table.api org.apache.flink.table.catalog -
-
Uses of Schema in org.apache.flink.table.api
Methods in org.apache.flink.table.api that return Schema Modifier and Type Method Description SchemaSchema.Builder. build()Returns an instance of an unresolvedSchema.static SchemaSchema. derived()Convenience method for stating explicitly that a schema is empty and should be fully derived by the framework.SchemaTableSchema. toSchema()Deprecated.Helps to migrate to the newSchemaclass.SchemaTableSchema. toSchema(Map<String,String> comments)Deprecated.Helps to migrate to the newSchemaclass, retain comments when needed.Methods in org.apache.flink.table.api with parameters of type Schema Modifier and Type Method Description Schema.BuilderSchema.Builder. fromSchema(Schema unresolvedSchema)Adopts all members from the given unresolved schema. -
Uses of Schema in org.apache.flink.table.catalog
Methods in org.apache.flink.table.catalog that return Schema Modifier and Type Method Description default SchemaCatalogBaseTable. getUnresolvedSchema()Returns the schema of the table or view.SchemaDefaultCatalogTable. getUnresolvedSchema()SchemaResolvedCatalogTable. getUnresolvedSchema()SchemaResolvedCatalogView. getUnresolvedSchema()Methods in org.apache.flink.table.catalog with parameters of type Schema Modifier and Type Method Description static CatalogTableCatalogTable. of(Schema schema, String comment, List<String> partitionKeys, Map<String,String> options)Creates a basic implementation of this interface.static CatalogTableCatalogTable. of(Schema schema, String comment, List<String> partitionKeys, Map<String,String> options, Long snapshot)Creates an instance ofCatalogTablewith a specific snapshot.static CatalogViewCatalogView. of(Schema schema, String comment, String originalQuery, String expandedQuery, Map<String,String> options)Creates a basic implementation of this interface.ResolvedSchemaSchemaResolver. resolve(Schema schema)Constructors in org.apache.flink.table.catalog with parameters of type Schema Constructor Description DefaultCatalogTable(Schema schema, String comment, List<String> partitionKeys, Map<String,String> options)DefaultCatalogTable(Schema schema, String comment, List<String> partitionKeys, Map<String,String> options, Long snapshot)
-