Package com.mckoi.database
Class ViewDef
java.lang.Object
com.mckoi.database.ViewDef
A ViewDef object is a definition of a view stored in the database. It is
an object that can be easily serialized and deserialized to/from the system
view table. It contains the DataTableDef that describes the characteristics
of the view result, and a QueryPlanNode that describes how the view can be
constructed.
- Author:
- Tobias Downer
-
Constructor Summary
ConstructorsConstructorDescriptionViewDef
(DataTableDef view_def, QueryPlanNode query_node) Constructs the ViewDef object. -
Method Summary
Modifier and TypeMethodDescriptionReturns the DataTableDef for this view.Returns the QueryPlanNode for this view.
-
Constructor Details
-
ViewDef
Constructs the ViewDef object.
-
-
Method Details
-
getDataTableDef
Returns the DataTableDef for this view. -
getQueryPlanNode
Returns the QueryPlanNode for this view.
-