You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by su...@apache.org on 2016/10/11 03:57:43 UTC

[6/7] incubator-trafodion git commit: Rework suggested by Selva

Rework suggested by Selva


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/a2dcbba4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/a2dcbba4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/a2dcbba4

Branch: refs/heads/master
Commit: a2dcbba4b07fbff0c2d78a01114eb075bfca509d
Parents: 49bc9c5
Author: Suresh Subbiah <su...@apache.org>
Authored: Mon Oct 10 22:46:28 2016 +0000
Committer: Suresh Subbiah <su...@apache.org>
Committed: Mon Oct 10 22:46:28 2016 +0000

----------------------------------------------------------------------
 core/sql/common/Collections.h | 12 ------------
 1 file changed, 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/a2dcbba4/core/sql/common/Collections.h
----------------------------------------------------------------------
diff --git a/core/sql/common/Collections.h b/core/sql/common/Collections.h
index 6337ba7..915dbf1 100644
--- a/core/sql/common/Collections.h
+++ b/core/sql/common/Collections.h
@@ -1831,10 +1831,6 @@ template <class T> class NASet : public NACollection<T>
 
 public:
 
-  // default constructor
-  /* NASet(CollIndex initSize = 0) : NACollection<T>(initSize)
-     { invalidateCache(); } */
-
   // constructor with user-defined heap
   NASet(CollHeap  *heap,
         CollIndex initSize = 0) : NACollection<T>(heap,initSize)
@@ -1958,10 +1954,6 @@ template <class T> class NAList : public NACollection<T>
 
 public:
 
-  // default constructor
-  /*NAList(CollIndex initLen = 0) : NACollection<T>(initLen) 
-    { first_ = last_ = userIndexCache_ = arrayIndexCache_ = NULL_COLL_INDEX; }*/
-
   // constructor with user-defined heap
   NAList(CollHeap * heap,
          CollIndex initLen = 0) : NACollection<T>(heap,initLen) 
@@ -2216,10 +2208,6 @@ template <class T> class NAArray : public NACollection<T>
 
 public :
 
-  // default constructor
-  //NAArray(CollIndex initialElements = 0) : 
-  //NACollection<T>(initialElements) {}
-
   // constructor with user-defined heap
   NAArray(CollHeap *heap, CollIndex initialElements = 0) : 
        NACollection<T>(heap,initialElements) {}