Beispiel #1
0
		public override AlgebraNode VisitJoinAlgebraNode(JoinAlgebraNode node)
		{
			if (node.Op == JoinAlgebraNode.JoinOperator.RightOuterJoin ||
				node.Op == JoinAlgebraNode.JoinOperator.RightAntiSemiJoin ||
				node.Op == JoinAlgebraNode.JoinOperator.RightSemiJoin)
			{
				if (node.OuterReferences != null && node.OuterReferences.Length > 0)
					throw ExceptionBuilder.InternalError("Outer references should not be possible for {0} and are not supported.", node.Op);

				node.SwapSides();
			}

			NestedLoopsIterator nestedLoopsIterator;

			switch (node.Op)
			{
				case JoinAlgebraNode.JoinOperator.InnerJoin:
					nestedLoopsIterator = new InnerNestedLoopsIterator();
					break;
				case JoinAlgebraNode.JoinOperator.LeftOuterJoin:
					nestedLoopsIterator = new LeftOuterNestedLoopsIterator();
					break;
				case JoinAlgebraNode.JoinOperator.LeftSemiJoin:
					if (node.ProbeBufferEntry == null)
						nestedLoopsIterator = new LeftSemiNestedLoopsIterator();
					else
					{
						ProbedSemiJoinNestedLoopsIterator probedSemiJoinNestedLoopsIterator = new ProbedSemiJoinNestedLoopsIterator();
						probedSemiJoinNestedLoopsIterator.ProbeOutput = GetDefinedValue(node.OutputList, node.ProbeBufferEntry);
						nestedLoopsIterator = probedSemiJoinNestedLoopsIterator;
					}
					break;
				case JoinAlgebraNode.JoinOperator.LeftAntiSemiJoin:
					if (node.ProbeBufferEntry == null)
						nestedLoopsIterator = new LeftAntiSemiNestedLoopsIterator();
					else
					{
						ProbedAntiSemiJoinNestedLoopsIterator probedSemiJoinNestedLoopsIterator = new ProbedAntiSemiJoinNestedLoopsIterator();
						probedSemiJoinNestedLoopsIterator.ProbeOutput = GetDefinedValue(node.OutputList, node.ProbeBufferEntry);
						nestedLoopsIterator = probedSemiJoinNestedLoopsIterator;
					}
					break;
				default:
					throw ExceptionBuilder.UnhandledCaseLabel(node.Op);
			}

			nestedLoopsIterator.RowBuffer = new object[node.OutputList.Length];
			nestedLoopsIterator.Left = ConvertAlgebraNode(node.Left);
			nestedLoopsIterator.LeftOutput = GetIteratorOutput(0, node.Left.OutputList, node.OutputList);

			PushOuterReferences(nestedLoopsIterator.Left.RowBuffer, node);

			nestedLoopsIterator.Right = ConvertAlgebraNode(node.Right);
			nestedLoopsIterator.RightOutput = GetIteratorOutput(nestedLoopsIterator.LeftOutput.Length, node.Right.OutputList, node.OutputList);

			UpdatePredicateRowBufferReferences(nestedLoopsIterator, node);

			if (node.OuterReferences != null && node.OuterReferences.Length > 0)
				_outerReferenceStack.Pop();

			SetLastIterator(node, nestedLoopsIterator);

			return node;
		}
Beispiel #2
0
        public override AlgebraNode VisitJoinAlgebraNode(JoinAlgebraNode node)
        {
            if (node.Op == JoinAlgebraNode.JoinOperator.RightOuterJoin ||
                node.Op == JoinAlgebraNode.JoinOperator.RightAntiSemiJoin ||
                node.Op == JoinAlgebraNode.JoinOperator.RightSemiJoin)
            {
                if (node.OuterReferences != null && node.OuterReferences.Length > 0)
                {
                    throw ExceptionBuilder.InternalError("Outer references should not be possible for {0} and are not supported.", node.Op);
                }

                node.SwapSides();
            }

            NestedLoopsIterator nestedLoopsIterator;

            switch (node.Op)
            {
            case JoinAlgebraNode.JoinOperator.InnerJoin:
                nestedLoopsIterator = new InnerNestedLoopsIterator();
                break;

            case JoinAlgebraNode.JoinOperator.LeftOuterJoin:
                nestedLoopsIterator = new LeftOuterNestedLoopsIterator();
                break;

            case JoinAlgebraNode.JoinOperator.LeftSemiJoin:
                if (node.ProbeBufferEntry == null)
                {
                    nestedLoopsIterator = new LeftSemiNestedLoopsIterator();
                }
                else
                {
                    ProbedSemiJoinNestedLoopsIterator probedSemiJoinNestedLoopsIterator = new ProbedSemiJoinNestedLoopsIterator();
                    probedSemiJoinNestedLoopsIterator.ProbeOutput = GetDefinedValue(node.OutputList, node.ProbeBufferEntry);
                    nestedLoopsIterator = probedSemiJoinNestedLoopsIterator;
                }
                break;

            case JoinAlgebraNode.JoinOperator.LeftAntiSemiJoin:
                if (node.ProbeBufferEntry == null)
                {
                    nestedLoopsIterator = new LeftAntiSemiNestedLoopsIterator();
                }
                else
                {
                    ProbedAntiSemiJoinNestedLoopsIterator probedSemiJoinNestedLoopsIterator = new ProbedAntiSemiJoinNestedLoopsIterator();
                    probedSemiJoinNestedLoopsIterator.ProbeOutput = GetDefinedValue(node.OutputList, node.ProbeBufferEntry);
                    nestedLoopsIterator = probedSemiJoinNestedLoopsIterator;
                }
                break;

            default:
                throw ExceptionBuilder.UnhandledCaseLabel(node.Op);
            }

            nestedLoopsIterator.RowBuffer  = new object[node.OutputList.Length];
            nestedLoopsIterator.Left       = ConvertAlgebraNode(node.Left);
            nestedLoopsIterator.LeftOutput = GetIteratorOutput(0, node.Left.OutputList, node.OutputList);

            PushOuterReferences(nestedLoopsIterator.Left.RowBuffer, node);

            nestedLoopsIterator.Right       = ConvertAlgebraNode(node.Right);
            nestedLoopsIterator.RightOutput = GetIteratorOutput(nestedLoopsIterator.LeftOutput.Length, node.Right.OutputList, node.OutputList);

            UpdatePredicateRowBufferReferences(nestedLoopsIterator, node);

            if (node.OuterReferences != null && node.OuterReferences.Length > 0)
            {
                _outerReferenceStack.Pop();
            }

            SetLastIterator(node, nestedLoopsIterator);

            return(node);
        }