Esempio n. 1
0
 public static QueryPlanIndexForge MakeIndexTableAccess(TableLookupIndexReqKey indexName)
 {
     IDictionary<TableLookupIndexReqKey, QueryPlanIndexItemForge> indexMap =
         new Dictionary<TableLookupIndexReqKey, QueryPlanIndexItemForge>();
     indexMap.Put(indexName, null);
     return new QueryPlanIndexForge(indexMap);
 }
Esempio n. 2
0
 protected bool Equals(TableLookupIndexReqKey other)
 {
     return string.Equals(IndexName, other.IndexName) &&
            string.Equals(TableName, other.TableName) &&
            string.Equals(IndexModuleName, other.IndexModuleName);
 }