summaryrefslogtreecommitdiff
path: root/src/conn/conn_open.c
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2015-04-01 20:27:49 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2015-04-01 20:27:49 +1100
commit7f1998be92d49435a23f7f42ef5b438a133f881f (patch)
tree0e4a8a135bbb4a5cdf82b06212ff689d262a7843 /src/conn/conn_open.c
parent76cba586685828fc3a8598b48e70c7614818859c (diff)
downloadmongo-7f1998be92d49435a23f7f42ef5b438a133f881f.tar.gz
Add an initial implementation of named, in-memory snapshots. This implementation is mainly intended to flesh out the API. It won't cope well with very large numbers of active snapshots, ignores some misuses of the interface and doesn't deal at all with the problem of converting snapshots to on-disk checkpoints.
Diffstat (limited to 'src/conn/conn_open.c')
-rw-r--r--src/conn/conn_open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conn/conn_open.c b/src/conn/conn_open.c
index 86f62e176ad..38671e31451 100644
--- a/src/conn/conn_open.c
+++ b/src/conn/conn_open.c
@@ -163,7 +163,7 @@ __wt_connection_close(WT_CONNECTION_IMPL *conn)
WT_TRET(__wt_cache_destroy(session));
/* Discard transaction state. */
- __wt_txn_global_destroy(session);
+ WT_TRET(__wt_txn_global_destroy(session));
/* Close extensions, first calling any unload entry point. */
while ((dlh = TAILQ_FIRST(&conn->dlhqh)) != NULL) {