Deveel.Data.Sql.Query.CompositeNode.CompositeNode C# (CSharp) Method

CompositeNode() public method

public CompositeNode ( IQueryPlanNode left, IQueryPlanNode right, CompositeFunction compositeOp, bool allOp ) : System
left IQueryPlanNode
right IQueryPlanNode
compositeOp CompositeFunction
allOp bool
return System
        public CompositeNode(IQueryPlanNode left, IQueryPlanNode right, CompositeFunction compositeOp, bool allOp)
            : base(left, right)
        {
            CompositeFunction = compositeOp;
            All = allOp;
        }

Same methods

CompositeNode::CompositeNode ( SerializationInfo info, StreamingContext context ) : System