You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2018/11/19 18:16:20 UTC

[1/2] trafodion git commit: fix the bug that the element in LRUList has been destructed twice.

Repository: trafodion
Updated Branches:
  refs/heads/master e1a5e84d9 -> beb54ad49


fix the bug that the element in LRUList has been destructed twice.


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

Branch: refs/heads/master
Commit: 2d196c1e6dedcbdcfd2c75a7e62d627dea3f4eca
Parents: 571611a
Author: wenjun.zhu <we...@esgyn.cn>
Authored: Mon Nov 12 18:25:33 2018 +0800
Committer: wenjun.zhu <we...@esgyn.cn>
Committed: Mon Nov 12 18:25:33 2018 +0800

----------------------------------------------------------------------
 core/sql/sqlcomp/QCache.h | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafodion/blob/2d196c1e/core/sql/sqlcomp/QCache.h
----------------------------------------------------------------------
diff --git a/core/sql/sqlcomp/QCache.h b/core/sql/sqlcomp/QCache.h
index b0a06c3..310cea1 100644
--- a/core/sql/sqlcomp/QCache.h
+++ b/core/sql/sqlcomp/QCache.h
@@ -1354,7 +1354,6 @@ class LRUList : public NABasicObject {
       iterator tmp = (iterator)(pos.node_->next_);
       pos.node_->prev_->next_ = pos.node_->next_;
       pos.node_->next_->prev_ = pos.node_->prev_;
-      pos.node_->data_.~KeyDataPair(); // destroy data_
       putNode(pos.node_);
       --length_;
       return tmp;


[2/2] trafodion git commit: Merge [TRAFODION-3232] PR 1743 Fix LRUList bug where dtor was called twice

Posted by db...@apache.org.
Merge [TRAFODION-3232] PR 1743 Fix LRUList bug where dtor was called twice


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

Branch: refs/heads/master
Commit: beb54ad496f5d46b52ddef2cd87fd18b4e1ef2fa
Parents: e1a5e84 2d196c1
Author: Dave Birdsall <db...@apache.org>
Authored: Mon Nov 19 18:15:45 2018 +0000
Committer: Dave Birdsall <db...@apache.org>
Committed: Mon Nov 19 18:15:45 2018 +0000

----------------------------------------------------------------------
 core/sql/sqlcomp/QCache.h | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------