summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-11-01 09:25:11 -0500
committerKeith Bostic <keith@wiredtiger.com>2015-11-01 09:25:11 -0500
commitad9866c9f08ff331f53bfe399da6d0f59e801287 (patch)
tree1efdb6ef3bb99f32f36176133a10c8d957977d70
parent2acf11c85092ed93ece69b8a865f54645aaea51d (diff)
downloadmongo-ad9866c9f08ff331f53bfe399da6d0f59e801287.tar.gz
Fix a couple of comments.
-rw-r--r--src/reconcile/rec_write.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/reconcile/rec_write.c b/src/reconcile/rec_write.c
index 271493e4c53..965f798e820 100644
--- a/src/reconcile/rec_write.c
+++ b/src/reconcile/rec_write.c
@@ -40,9 +40,7 @@ typedef struct {
uint64_t orig_btree_checkpoint_gen;
uint64_t orig_txn_checkpoint_gen;
- /*
- * Track maximum transaction ID seen and first unwritten transaction ID.
- */
+ /* Track the page's maximum transaction ID. */
uint64_t max_txn;
/*
@@ -818,8 +816,10 @@ __rec_write_init(WT_SESSION_IMPL *session,
}
r->flags = flags;
- /* Track if the page can be marked clean. */
+ /* Track the page's maximum transaction ID. */
r->max_txn = WT_TXN_NONE;
+
+ /* Track if the page can be marked clean. */
r->leave_dirty = false;
/* Raw compression. */