Commit b6b96371 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

closes #5716, remove txn->starttime

git-svn-id: file:///svn/toku/tokudb@50671 c7de825b-a66e-492c-adef-691d508d4ae1
parent 0207adfc
...@@ -139,7 +139,6 @@ struct txn_roll_info { ...@@ -139,7 +139,6 @@ struct txn_roll_info {
struct tokutxn { struct tokutxn {
// These don't change after create: // These don't change after create:
const time_t starttime; // timestamp in seconds of transaction start
const uint64_t txnid64; // this happens to be the first lsn const uint64_t txnid64; // this happens to be the first lsn
const uint64_t ancestor_txnid64; // this is the lsn of root transaction const uint64_t ancestor_txnid64; // this is the lsn of root transaction
const uint64_t snapshot_txnid64; // this is the lsn of the snapshot const uint64_t snapshot_txnid64; // this is the lsn of the snapshot
......
...@@ -140,7 +140,6 @@ void toku_txn_create_txn ( ...@@ -140,7 +140,6 @@ void toku_txn_create_txn (
}; };
struct tokutxn new_txn = { struct tokutxn new_txn = {
.starttime = time(NULL),
.txnid64 = TXNID_NONE, .txnid64 = TXNID_NONE,
.ancestor_txnid64 = TXNID_NONE, .ancestor_txnid64 = TXNID_NONE,
.snapshot_txnid64 = TXNID_NONE, .snapshot_txnid64 = TXNID_NONE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment