1 #ifndef PLAN_PLANNODE_H
2 #define PLAN_PLANNODE_H
39 template<
class ...UniquePtrs>
41 TreeNode(tag,
std::forward<UniquePtrs>(input)...) {}
71 return get_input_as<PlanNode>(i);
PlanNode is an abstract interface representing physical query plan that does not bound with any parti...
Definition: PlanNode.h:26
virtual const Schema * get_output_schema() const =0
Each physical plan should link a schema for its output relation, incidating what fields are included ...
PlanNode(NodeTag tag, UniquePtrs &&...input)
Base constructor for all physical plan node.
Definition: PlanNode.h:40
virtual ~PlanNode()
Deconstructor of PlanExecState.
Definition: PlanNode.h:44
PlanNode * get_child(size_t i) const
Utility function to get the raw pointer of i-th child of this physical plan.
Definition: PlanNode.h:70
virtual std::unique_ptr< PlanExecState > create_exec_state() const =0
Create the corresponding execution state for the physical plan so that it can be used as physical sca...
A Schema object stores the information for accessing an ordered set of typed fields either from a dis...
Definition: Schema.h:39
TreeNode is the base class of all tree structures in TDB (e.g., parsing tree, logical plan,...
Definition: TreeNode.h:40
NodeTag
Definition: NodeTag.h:12