DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Private Member Functions | List of all members
Deveel.Data.Sql.Query.LogicalUnionNode Class Reference
Inheritance diagram for Deveel.Data.Sql.Query.LogicalUnionNode:
Deveel.Data.Sql.Query.BranchQueryPlanNode Deveel.Data.Sql.Query.IQueryPlanNode Deveel.Data.Serialization.ISerializable

Public Member Functions

 LogicalUnionNode (IQueryPlanNode left, IQueryPlanNode right)
 
override ITable Evaluate (IRequest context)
 

Private Member Functions

 LogicalUnionNode (ObjectData data)
 

Additional Inherited Members

- Protected Member Functions inherited from Deveel.Data.Sql.Query.BranchQueryPlanNode
 BranchQueryPlanNode (IQueryPlanNode left, IQueryPlanNode right)
 
 BranchQueryPlanNode (ObjectData data)
 
virtual void GetData (SerializeData data)
 
- Properties inherited from Deveel.Data.Sql.Query.BranchQueryPlanNode
IQueryPlanNode Left [get, private set]
 Gets the left node of the branch query plan node. More...
 
IQueryPlanNode Right [get, private set]
 Gets the right node of the branch query plan node. More...
 

Detailed Description

Definition at line 24 of file LogicalUnionNode.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Query.LogicalUnionNode.LogicalUnionNode ( IQueryPlanNode  left,
IQueryPlanNode  right 
)
inline

Definition at line 25 of file LogicalUnionNode.cs.

26  : base(left, right) {
27  }
Deveel.Data.Sql.Query.LogicalUnionNode.LogicalUnionNode ( ObjectData  data)
inlineprivate

Definition at line 29 of file LogicalUnionNode.cs.

30  : base(data) {
31  }

Member Function Documentation

override ITable Deveel.Data.Sql.Query.LogicalUnionNode.Evaluate ( IRequest  context)
inlinevirtual

Implements Deveel.Data.Sql.Query.BranchQueryPlanNode.

Definition at line 33 of file LogicalUnionNode.cs.

33  {
34  var leftResult = Left.Evaluate(context);
35  var rightResult = Right.Evaluate(context);
36 
37  return leftResult.Union(rightResult);
38  }
IQueryPlanNode Right
Gets the right node of the branch query plan node.
ITable Evaluate(IRequest context)
IQueryPlanNode Left
Gets the left node of the branch query plan node.

The documentation for this class was generated from the following file: