Example #1
0
        internal Table(Command command, TableMD tableMetadata, int tableId)
        {
            m_tableMetadata = tableMetadata;
            m_columns = Command.CreateVarList();
            m_keys = command.CreateVarVec();
            m_nonnullableColumns = command.CreateVarVec();
            m_tableId = tableId;

            var columnVarMap = new Dictionary<string, ColumnVar>();
            foreach (var c in tableMetadata.Columns)
            {
                var v = command.CreateColumnVar(this, c);
                columnVarMap[c.Name] = v;
                if (!c.IsNullable)
                {
                    m_nonnullableColumns.Set(v);
                }
            }

            foreach (var c in tableMetadata.Keys)
            {
                var v = columnVarMap[c.Name];
                m_keys.Set(v);
            }

            m_referencedColumns = command.CreateVarVec(m_columns);
        }
        /// <summary>
        ///     Determines whether any var from a given list of keys is referenced by any of defining node's right relatives,
        ///     with the exception of the relatives brunching at the given targetJoinNode.
        /// </summary>
        /// <param name="keys"> A list of vars to check for </param>
        /// <param name="definingNode"> The node considered to be the defining node </param>
        /// <param name="targetJoinNode"> The relatives branching at this node are skipped </param>
        /// <returns> False, only it can determine that not a single var from a given list of keys is referenced by any of defining node's right relatives, with the exception of the relatives brunching at the given targetJoinNode. </returns>
        internal bool HasKeyReferences(VarVec keys, Node definingNode, Node targetJoinNode)
        {
            var currentChild = definingNode;
            Node parent;
            var continueUp = true;

            while (continueUp & m_nodeToParentMap.TryGetValue(currentChild, out parent))
            {
                if (parent != targetJoinNode)
                {
                    // Check the parent
                    if (HasVarReferencesShallow(parent, keys, m_nodeToSiblingNumber[currentChild], out continueUp))
                    {
                        return true;
                    }

                    //Check all the siblings to the right
                    for (var i = m_nodeToSiblingNumber[currentChild] + 1; i < parent.Children.Count; i++)
                    {
                        if (parent.Children[i].GetNodeInfo(m_command).ExternalReferences.Overlaps(keys))
                        {
                            return true;
                        }
                    }
                }
                currentChild = parent;
            }
            return false;
        }
Example #3
0
 internal SetOp(OpType opType, VarVec outputs, VarMap left, VarMap right)
     : this(opType)
 {
     m_varMap = new VarMap[2];
     m_varMap[0] = left;
     m_varMap[1] = right;
     m_outputVars = outputs;
 }
Example #4
0
 // <summary>
 // Compute the hash value for a Vec
 // </summary>
 internal static int GetHashValue(VarVec vec)
 {
     var hashValue = 0;
     foreach (var v in vec)
     {
         hashValue ^= v.GetHashCode();
     }
     return hashValue;
 }
Example #5
0
 internal NestBaseOp(
     OpType opType, List<SortKey> prefixSortKeys,
     VarVec outputVars,
     List<CollectionInfo> collectionInfoList)
     : base(opType)
 {
     m_outputs = outputVars;
     m_collectionInfoList = collectionInfoList;
     m_prefixSortKeys = prefixSortKeys;
 }
 internal CollectionInfo(
     Var collectionVar, ColumnMap columnMap, VarList flattenedElementVars, VarVec keys, List<SortKey> sortKeys,
     object discriminatorValue)
 {
     m_collectionVar = collectionVar;
     m_columnMap = columnMap;
     m_flattenedElementVars = flattenedElementVars;
     m_keys = keys;
     m_sortKeys = sortKeys;
     m_discriminatorValue = discriminatorValue;
 }
 internal ExtendedNodeInfo(Command cmd)
     : base(cmd)
 {
     m_localDefinitions = cmd.CreateVarVec();
     m_definitions = cmd.CreateVarVec();
     m_nonNullableDefinitions = cmd.CreateVarVec();
     m_nonNullableVisibleDefinitions = cmd.CreateVarVec();
     m_keys = new KeyVec(cmd);
     m_minRows = RowCount.Zero;
     m_maxRows = RowCount.Unbounded;
 }
Example #8
0
 private static VarVec CreateVarVec(params int[] bits)
 {
     var command = new Mock<Command>();
     var vec = new VarVec(command.Object);
     bits.Each(b =>
                   {
                       var v = CreateVar(b);
                       vec.Set(v);
                       command.Setup(m => m.GetVar(b)).Returns(v);
                   });
     return vec;
 }
Example #9
0
        /// <summary>
        ///     Split up a predicate into 2 parts - the pushdown and the non-pushdown predicate.
        ///     If the filter node has no external references *and* the "columns" parameter is null,
        ///     then the entire predicate can be pushed down
        ///     We then compute the set of valid column references - if the "columns" parameter
        ///     is non-null, this set is used. Otherwise, we get the definitions of the
        ///     input relop node of the filterOp, and use that.
        ///     We use this list of valid column references to identify which parts of the filter
        ///     predicate can be pushed down - only those parts of the predicate that do not
        ///     reference anything beyond these columns are considered for pushdown. The rest are
        ///     stuffed into the nonPushdownPredicate output parameter
        /// </summary>
        /// <param name="command"> Command object </param>
        /// <param name="filterNode"> the FilterOp subtree </param>
        /// <param name="columns"> (Optional) List of columns to consider for "pushdown" </param>
        /// <param name="nonPushdownPredicateNode"> (output) Part of the predicate that cannot be pushed down </param>
        /// <returns> part of the predicate that can be pushed down </returns>
        private static Node GetPushdownPredicate(Command command, Node filterNode, VarVec columns, out Node nonPushdownPredicateNode)
        {
            var pushdownPredicateNode = filterNode.Child1;
            nonPushdownPredicateNode = null;
            var filterNodeInfo = command.GetExtendedNodeInfo(filterNode);
            if (columns == null
                && filterNodeInfo.ExternalReferences.IsEmpty)
            {
                return pushdownPredicateNode;
            }

            if (columns == null)
            {
                var inputNodeInfo = command.GetExtendedNodeInfo(filterNode.Child0);
                columns = inputNodeInfo.Definitions;
            }

            var predicate = new Predicate(command, pushdownPredicateNode);
            Predicate nonPushdownPredicate;
            predicate = predicate.GetSingleTablePredicates(columns, out nonPushdownPredicate);
            pushdownPredicateNode = predicate.BuildAndTree();
            nonPushdownPredicateNode = nonPushdownPredicate.BuildAndTree();
            return pushdownPredicateNode;
        }
        /// <summary>
        ///     Checks whether the given node has references to any of the vars in the given VarVec.
        ///     It only checks the given node, not its children.
        /// </summary>
        /// <param name="node"> The node to check </param>
        /// <param name="vars"> The list of vars to check for </param>
        /// <param name="childIndex"> The index of the node's subree from which this var is coming. This is used for SetOp-s, to be able to locate the appropriate var map that will give the vars corresponding to the given once </param>
        /// <param name="continueUp"> If the OpType of the node's Op is such that it 'hides' the input, i.e. the decision of whether the given vars are referenced can be made on this level, it returns true, false otherwise </param>
        /// <returns> True if the given node has references to any of the vars in the given VarVec, false otherwise </returns>
        private static bool HasVarReferencesShallow(Node node, VarVec vars, int childIndex, out bool continueUp)
        {
            switch (node.Op.OpType)
            {
                case OpType.ConstrainedSort:
                case OpType.Sort:
                    continueUp = true;
                    return HasVarReferences(((SortBaseOp)node.Op).Keys, vars);

                case OpType.Distinct:
                    continueUp = false;
                    return HasVarReferences(((DistinctOp)node.Op).Keys, vars);

                case OpType.Except:
                case OpType.Intersect:
                case OpType.UnionAll:
                    continueUp = false;
                    return HasVarReferences((SetOp)node.Op, vars, childIndex);

                case OpType.GroupBy:
                    continueUp = false;
                    return HasVarReferences(((GroupByOp)node.Op).Keys, vars);

                case OpType.PhysicalProject:
                    continueUp = false;
                    return HasVarReferences(((PhysicalProjectOp)node.Op).Outputs, vars);

                case OpType.Project:
                    continueUp = false;
                    return HasVarReferences(((ProjectOp)node.Op).Outputs, vars);

                default:
                    continueUp = true;
                    return false;
            }
        }
Example #11
0
 internal KeyVec(Command itree)
 {
     m_keys = itree.CreateVarVec();
     m_noKeys = true;
 }
Example #12
0
 /// <summary>
 /// Release an enumerator; keep it in a local stack for future use
 /// </summary>
 /// <param name="enumerator"></param>
 internal void ReleaseVarVecEnumerator(VarVec.VarVecEnumerator enumerator)
 {
     if (!m_disableVarVecEnumCaching)
     {
         m_freeVarVecEnumerators.Push(enumerator);
     }
 }
Example #13
0
        /// <summary>
        /// Create a new enumerator for a VarVec; use a free one if its
        /// available; otherwise, create a new one
        /// </summary>
        /// <param name="vec"></param>
        /// <returns></returns>
        internal VarVec.VarVecEnumerator GetVarVecEnumerator(VarVec vec)
        {
            VarVec.VarVecEnumerator enumerator;

            if (m_disableVarVecEnumCaching ||
                m_freeVarVecEnumerators.Count == 0)
            {
                enumerator = new VarVec.VarVecEnumerator(vec);
            }
            else
            {
                enumerator = m_freeVarVecEnumerators.Pop();
                enumerator.Init(vec);
            }
            return enumerator;
        }
Example #14
0
 /// <summary>
 ///     Prunes a varset - gets rid of unreferenced vars from the Varset in place
 /// </summary>
 /// <param name="varSet"> the varset to prune </param>
 private void PruneVarSet(VarVec varSet)
 {
     varSet.And(m_referencedVars);
 }
 /// <summary>
 ///     Does the given list of sort keys contain a key with a var that is the given VarVec
 /// </summary>
 private static bool HasVarReferences(List<SortKey> listToCheck, VarVec vars)
 {
     foreach (var key in listToCheck)
     {
         if (vars.IsSet(key.Var))
         {
             return true;
         }
     }
     return false;
 }
Example #16
0
        protected int m_hashValue; // hash value for the node

        #endregion

        #region constructors

        internal NodeInfo(Command cmd)
        {
            m_externalReferences = cmd.CreateVarVec();
        }
Example #17
0
 /// <summary>
 /// Create a singleStreamNestOp
 /// </summary>
 /// <param name="keys">keys for the nest operation</param>
 /// <param name="prefixSortKeys">list of prefix sort keys</param>
 /// <param name="postfixSortKeys">list of postfix sort keys</param>
 /// <param name="outputVars">List of outputVars</param>
 /// <param name="collectionInfoList">CollectionInfo for each collection </param>
 /// <param name="discriminatorVar">Var describing the discriminator</param>
 /// <returns></returns>
 internal SingleStreamNestOp CreateSingleStreamNestOp(VarVec keys,
     List<SortKey> prefixSortKeys, List<SortKey> postfixSortKeys,
     VarVec outputVars,
     List<CollectionInfo> collectionInfoList, Var discriminatorVar)
 {
     return new SingleStreamNestOp(keys, prefixSortKeys, postfixSortKeys, outputVars, collectionInfoList, discriminatorVar);
 }
Example #18
0
 /// <summary>
 /// Another overload - with an additional discriminatorValue.
 /// Should this be a subtype instead?
 /// </summary>
 /// <param name="collectionVar">the collectionVar</param>
 /// <param name="columnMap">column map for the collection element</param>
 /// <param name="flattenedElementVars">elementVars with any nested collections pulled up</param>
 /// <param name="keys">keys specific to this collection</param>
 /// <param name="sortKeys">sort keys specific to this collecion</param>
 /// <param name="discriminatorValue">discriminator value for this collection (under the current nestOp)</param>
 /// <returns>a new CollectionInfo instance</returns>
 internal static CollectionInfo CreateCollectionInfo(Var collectionVar, ColumnMap columnMap, VarList flattenedElementVars, VarVec keys, List<InternalTrees.SortKey> sortKeys, object discriminatorValue)
 {
     return new CollectionInfo(collectionVar, columnMap, flattenedElementVars, keys, sortKeys, discriminatorValue);
 }
Example #19
0
 /// <summary>
 /// Creates a new DistinctOp
 /// <param name="keyVars">list of key vars</param>
 /// </summary>
 /// <returns>A new DistinctOp</returns>
 internal DistinctOp CreateDistinctOp(VarVec keyVars)
 {
     return new DistinctOp(keyVars);
 }
Example #20
0
 /// <summary>
 /// Creates a new GroupByIntoOp
 /// </summary>
 /// <param name="gbyKeys">A VarSet that specifies the Key variables produced by the GroupByOp</param>
 /// <param name="outputs">A VarSet that specifies the vars from the input that represent the real grouping input</param>
 /// <param name="inputs">A VarSet that specifies all (Key and Aggregate) variables produced by the GroupByOp</param>
 /// <returns>A new GroupByOp with the specified key and output VarSets</returns>
 internal GroupByIntoOp CreateGroupByIntoOp(VarVec gbyKeys, VarVec inputs, VarVec outputs)
 {
     return new GroupByIntoOp(gbyKeys, inputs, outputs);
 }
Example #21
0
 private VarRefUsageFinder(VarVec varVec, Command command)
 {
     m_varVec   = varVec;
     m_usedVars = command.CreateVarVec();
 }
 /// <summary>
 ///     Does the gvien VarList overlap with the given VarVec
 /// </summary>
 private static bool HasVarReferences(VarList listToCheck, VarVec vars)
 {
     foreach (var var in vars)
     {
         if (listToCheck.Contains(var))
         {
             return true;
         }
     }
     return false;
 }
 /// <summary>
 ///     Do the two given varVecs overlap
 /// </summary>
 private static bool HasVarReferences(VarVec listToCheck, VarVec vars)
 {
     return listToCheck.Overlaps(vars);
 }
 /// <summary>
 ///     Probe the current VarSet for "structured" Vars - replace these with the
 ///     corresponding sets of flattened Vars
 /// </summary>
 /// <param name="varSet"> current set of vars </param>
 /// <returns> an "expanded" varset </returns>
 private VarVec FlattenVarSet(VarVec varSet)
 {
     var newVarSet = m_command.CreateVarVec(FlattenVars(varSet));
     return newVarSet;
 }
 /// <summary>
 ///     Does the list of outputs of the given SetOp contain a var
 ///     from the given VarVec defined by the SetOp's child with the given index
 /// </summary>
 private static bool HasVarReferences(SetOp op, VarVec vars, int index)
 {
     foreach (var var in op.VarMap[index].Values)
     {
         if (vars.IsSet(var))
         {
             return true;
         }
     }
     return false;
 }
Example #26
0
        // <summary>
        // Convert a CollectOp subtree (when used as the defining expression for a
        // VarDefOp) into a reasonable input to a NestOp.
        // </summary>
        // <remarks>
        // There are a couple of cases that we handle here:
        // (a) PhysicalProject(X) ==> X
        // (b) PhysicalProject(Sort(X)) ==> Sort(X)
        // </remarks>
        // <param name="physicalProjectNode"> the child of the CollectOp </param>
        // <param name="collectionVar"> the collectionVar being defined </param>
        // <param name="collectionInfoList"> where to append the new collectionInfo </param>
        // <param name="collectionNodes"> where to append the collectionNode </param>
        // <param name="externalReferences"> a bit vector of external references of the physicalProject </param>
        // <param name="collectionReferences"> a bit vector of collection vars </param>
        private void ConvertToNestOpInput(
            Node physicalProjectNode, Var collectionVar, List<CollectionInfo> collectionInfoList, List<Node> collectionNodes,
            VarVec externalReferences, VarVec collectionReferences)
        {
            // Keep track of any external references the physicalProjectOp has
            externalReferences.Or(Command.GetNodeInfo(physicalProjectNode).ExternalReferences);

            // Case: (a) PhysicalProject(X) ==> X
            var nestOpInput = physicalProjectNode.Child0;

            // Now build the collectionInfo for this input, including the flattened
            // list of vars, which is essentially the outputs from the physicalProject
            // with the sortKey vars that aren't already in the outputs we already 
            // have.
            var physicalProjectOp = (PhysicalProjectOp)physicalProjectNode.Op;
            var flattenedElementVarList = Command.CreateVarList(physicalProjectOp.Outputs);
            var flattenedElementVarVec = Command.CreateVarVec(flattenedElementVarList); // Use a VarVec to make the lookups faster
            List<SortKey> sortKeys = null;

            if (OpType.Sort
                == nestOpInput.Op.OpType)
            {
                // Case: (b) PhysicalProject(Sort(X)) ==> Sort(X)
                var sortOp = (SortOp)nestOpInput.Op;
                sortKeys = OpCopier.Copy(Command, sortOp.Keys);

                foreach (var sk in sortKeys)
                {
                    if (!flattenedElementVarVec.IsSet(sk.Var))
                    {
                        flattenedElementVarList.Add(sk.Var);
                        flattenedElementVarVec.Set(sk.Var);
                    }
                }
            }
            else
            {
                sortKeys = new List<SortKey>();
            }

            // Get the keys for the collection
            var keyVars = Command.GetExtendedNodeInfo(nestOpInput).Keys.KeyVars;

            //Check whether all key are projected
            var keyVarsClone = keyVars.Clone();
            keyVarsClone.Minus(flattenedElementVarVec);

            var keys = (keyVarsClone.IsEmpty) ? keyVars.Clone() : Command.CreateVarVec();

            // Create the collectionInfo
            var collectionInfo = Command.CreateCollectionInfo(
                collectionVar, physicalProjectOp.ColumnMap.Element, flattenedElementVarList, keys, sortKeys, null /*discriminatorValue*/);

            // Now update the collections we're tracking.
            collectionInfoList.Add(collectionInfo);
            collectionNodes.Add(nestOpInput);
            collectionReferences.Set(collectionVar);
        }
Example #27
0
 /// <summary>
 /// Create a MultiStreamNestOp
 /// </summary>
 /// <param name="prefixSortKeys">list of prefix sort keys</param>
 /// <param name="outputVars">List of outputVars</param>
 /// <param name="collectionInfoList">CollectionInfo for each collection element</param>
 /// <returns></returns>
 internal MultiStreamNestOp CreateMultiStreamNestOp(List<SortKey> prefixSortKeys, VarVec outputVars,
     List<CollectionInfo> collectionInfoList)
 {
     return new MultiStreamNestOp(prefixSortKeys, outputVars, collectionInfoList);
 }
Example #28
0
        private readonly VarVec m_referencedVars; // the list of referenced vars in the query

        #endregion

        #region constructor

        /// <summary>
        ///     Trivial private constructor
        /// </summary>
        /// <param name="compilerState"> current compiler state </param>
        private ProjectionPruner(PlanCompiler compilerState)
        {
            m_compilerState  = compilerState;
            m_referencedVars = compilerState.Command.CreateVarVec();
        }
Example #29
0
 /// <summary>
 /// VarVec constructor
 /// </summary>
 /// <returns>A new, empty, VarVec</returns>
 internal VarVec CreateVarVec()
 {
     VarVec vec;
     if (m_freeVarVecs.Count == 0)
     {
         vec = new VarVec(this);
     }
     else
     {
         vec = m_freeVarVecs.Pop();
         vec.Clear();
     }
     return vec;
 }
Example #30
0
 /// <summary>
 /// Create a new VarVec from the input VarVec
 /// </summary>
 /// <param name="v"></param>
 /// <returns></returns>
 internal VarVec CreateVarVec(VarVec v)
 {
     VarVec vec = CreateVarVec();
     vec.InitFrom(v);
     return vec;
 }
Example #31
0
 // <summary>
 // If we're going to eat the ProjectNode, then we at least need to make
 // sure we remap any vars it defines as varRefs, and ensure that any
 // references to them are switched.
 // </summary>
 private void EnsureReferencedVarsAreRemoved(List<Node> referencedVars, VarVec outputVars)
 {
     foreach (var chi in referencedVars)
     {
         var varDefOp = (VarDefOp)chi.Op;
         var defVar = varDefOp.Var;
         var refVar = ResolveVarReference(defVar);
         m_varRemapper.AddMapping(defVar, refVar);
         outputVars.Clear(defVar);
         outputVars.Set(refVar);
     }
 }
Example #32
0
 /// <summary>
 /// Release a VarVec to the freelist
 /// </summary>
 /// <param name="vec"></param>
 internal void ReleaseVarVec(VarVec vec)
 {
     m_freeVarVecs.Push(vec);
 }
Example #33
0
 // <summary>
 // Produce a "mapped" varVec
 // </summary>
 private VarVec RemapVarVec(VarVec varVec, Dictionary<Var, Var> varMap)
 {
     var newVarVec = Command.CreateVarVec(RemapVars(varVec, varMap));
     return newVarVec;
 }
Example #34
0
 internal NodeInfo(Command cmd)
 {
     this.m_externalReferences = cmd.CreateVarVec();
 }