summaryrefslogtreecommitdiff
path: root/src/docs/upgrading.dox
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-09-10 12:26:37 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-09-10 12:26:37 -0400
commit2bd115e75796e923c4ace79922762dfefd5619d4 (patch)
treeb2cd43cc5bdcfd5b17617d670c28fdc6181a3d82 /src/docs/upgrading.dox
parentc7fbd72c5f25a8dd78e6a2679659af3b65b43dc7 (diff)
downloadmongo-2bd115e75796e923c4ace79922762dfefd5619d4.tar.gz
Change WT_CURSOR::insert to not hold a position/resources in the tree on
success. Add additional wording that WT_CURSOR::reset should be called after any of the WT_CURSOR search, search-near, update or remove methods, once the cursor is no longer being used to iterate or retrieve values. Closes #587.
Diffstat (limited to 'src/docs/upgrading.dox')
-rw-r--r--src/docs/upgrading.dox14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/docs/upgrading.dox b/src/docs/upgrading.dox
index e61d3523ba5..255bc8f8879 100644
--- a/src/docs/upgrading.dox
+++ b/src/docs/upgrading.dox
@@ -1,5 +1,19 @@
/*! @page upgrading Upgrading WiredTiger applications
+@section version_165 Upgrading to Version 1.6.5
+<dl>
+
+<dt>WT_CURSOR::insert behavior</dt>
+<dd>
+In previous releases, the WT_CURSOR::insert ended positioned at the inserted
+record. To minimize the cursor resources held by applications inserting many
+records, the WT_CURSOR::insert method has been changed to end without any
+position. Application insert cursors should be reviewed to confirm they do
+not attempt to iterate after an insert.
+</dd>
+
+</dl>
+<hr>
@section version_164 Upgrading to Version 1.6.4
<dl>