diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-10-17 07:46:30 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-10-17 07:46:30 -0400 |
commit | 7590319f16c8ef44431ecc116dfd3c8b69dfcac6 (patch) | |
tree | badc045a50b34b476acca4e1f4ee0d570c660168 /ext/datasources/helium | |
parent | b063e91fb4ac65c8e24a9387f00f6e13b591b661 (diff) | |
download | mongo-7590319f16c8ef44431ecc116dfd3c8b69dfcac6.tar.gz |
Rename WT_DEADLOCK to WT_ROLLBACK, reference #1204.
Diffstat (limited to 'ext/datasources/helium')
-rw-r--r-- | ext/datasources/helium/helium.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/datasources/helium/helium.c b/ext/datasources/helium/helium.c index 2c1b5891fa1..f5be26e9119 100644 --- a/ext/datasources/helium/helium.c +++ b/ext/datasources/helium/helium.c @@ -806,7 +806,7 @@ cache_value_update_check(WT_CURSOR *wtcursor) for (i = 0, cp = cursor->cache; i < cursor->cache_entries; ++i, ++cp) if (!cache_value_aborted(wtcursor, cp) && !wtext->transaction_visible(wtext, session, cp->txnid)) - return (WT_DEADLOCK); + return (WT_ROLLBACK); return (0); } |