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 String
getComment()
String
getExpandedQuery()
Map<String,String>
getOptions()
String
getOriginalQuery()
org.apache.flink.table.legacy.api.TableSchema
getSchema()
-
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:
getOriginalQuery
in interfaceorg.apache.flink.table.catalog.CatalogView
-
getExpandedQuery
public String getExpandedQuery()
- Specified by:
getExpandedQuery
in interfaceorg.apache.flink.table.catalog.CatalogView
-
getOptions
public Map<String,String> getOptions()
- Specified by:
getOptions
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getSchema
public org.apache.flink.table.legacy.api.TableSchema getSchema()
- Specified by:
getSchema
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
getComment
public String getComment()
- Specified by:
getComment
in interfaceorg.apache.flink.table.catalog.CatalogBaseTable
-
-