Package org.apache.flink.table.catalog
Class AbstractCatalogView
- java.lang.Object
-
- org.apache.flink.table.catalog.AbstractCatalogView
-
- All Implemented Interfaces:
org.apache.flink.table.catalog.CatalogBaseTable,org.apache.flink.table.catalog.CatalogView
- Direct Known Subclasses:
CatalogViewImpl
@Internal public abstract class AbstractCatalogView extends Object implements org.apache.flink.table.catalog.CatalogView
An abstract catalog view.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetComment()StringgetExpandedQuery()Map<String,String>getOptions()StringgetOriginalQuery()org.apache.flink.table.legacy.api.TableSchemagetSchema()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
getOriginalQuery
public String getOriginalQuery()
- Specified by:
getOriginalQueryin interfaceorg.apache.flink.table.catalog.CatalogView
-
getExpandedQuery
public String getExpandedQuery()
- Specified by:
getExpandedQueryin interfaceorg.apache.flink.table.catalog.CatalogView
-
getOptions
public Map<String,String> getOptions()
- Specified by:
getOptionsin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getSchema
public org.apache.flink.table.legacy.api.TableSchema getSchema()
- Specified by:
getSchemain interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getComment
public String getComment()
- Specified by:
getCommentin interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
-