From 7f1998be92d49435a23f7f42ef5b438a133f881f Mon Sep 17 00:00:00 2001 From: Michael Cahill Date: Wed, 1 Apr 2015 20:27:49 +1100 Subject: 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. --- src/conn/conn_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conn/conn_open.c') 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) { -- cgit v1.2.1