diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-09-04 10:11:39 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-09-04 10:11:39 +0200 |
commit | 0dca4bcf9eb70a567c617ebc1b2da15057ad3806 (patch) | |
tree | 9b07bc16a39ffaaa992a32d419b6a4e53ad6f7e6 /lib/mnesia | |
parent | 94fa6d2fcf729d3df37a4e8dc4e369bf444ea55a (diff) | |
parent | 952db27ba0a5b87a2a47f3a7034a9bf92e3651e5 (diff) | |
download | otp-0dca4bcf9eb70a567c617ebc1b2da15057ad3806.tar.gz otp-0dca4bcf9eb70a567c617ebc1b2da15057ad3806.tar.bz2 otp-0dca4bcf9eb70a567c617ebc1b2da15057ad3806.zip |
Merge tag 'OTP_R15B02'
The R15B02 release
Diffstat (limited to 'lib/mnesia')
-rw-r--r-- | lib/mnesia/doc/src/notes.xml | 32 | ||||
-rw-r--r-- | lib/mnesia/vsn.mk | 2 |
2 files changed, 32 insertions, 2 deletions
diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml index f0df38a46c..04b8c106fd 100644 --- a/lib/mnesia/doc/src/notes.xml +++ b/lib/mnesia/doc/src/notes.xml @@ -38,7 +38,37 @@ thus constitutes one section in this document. The title of each section is the version number of Mnesia.</p> - <section><title>Mnesia 4.7</title> + <section><title>Mnesia 4.7.1</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Add tests showing that trying to delete non-existing + object may corrupt the </p> + <p> + In case of bag tables, trying to delete a non-existing + object leads to the index becoming corrupt. This happens + if the non-existing object we try to delete happens to + share its key and index field value with a single + existing object in the table. Result: The index entry + corresponding to the existing object is removed.</p> + <p> + Prevent index from being corrupted if a nonexistent item + is deleted</p> + <p> + We have to ensure that we actually delete the last object + with a given (key, index) pair before removing the index. + Thanks to Bartlomiej Puzon</p> + <p> + Own Id: OTP-10220</p> + </item> + </list> + </section> + +</section> + +<section><title>Mnesia 4.7</title> <section><title>Fixed Bugs and Malfunctions</title> <list> diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk index da292cbb43..6d5df448c9 100644 --- a/lib/mnesia/vsn.mk +++ b/lib/mnesia/vsn.mk @@ -1 +1 @@ -MNESIA_VSN = 4.7 +MNESIA_VSN = 4.7.1 |