diff options
author | Dan Gudmundsson <[email protected]> | 2017-09-15 11:50:09 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-09-15 11:50:09 +0200 |
commit | d6be9f66c293e225c24b43d83640a4e857fa5269 (patch) | |
tree | 68cb6545f0dca0e857ec3b301948ecc82485c9fe /lib | |
parent | 5af84c3251bda6861d760c748935c85cba406f31 (diff) | |
parent | 9b5c49fd0c06459f2b2f8becc60a0fb70eb9d3ea (diff) | |
download | otp-d6be9f66c293e225c24b43d83640a4e857fa5269.tar.gz otp-d6be9f66c293e225c24b43d83640a4e857fa5269.tar.bz2 otp-d6be9f66c293e225c24b43d83640a4e857fa5269.zip |
Merge pull request #1568 from legoscia/mnesia-doc-fragments-first-last
Mnesia: note first, next, prev and last vs fragmented tables
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mnesia/doc/src/Mnesia_chap5.xmlsrc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/mnesia/doc/src/Mnesia_chap5.xmlsrc b/lib/mnesia/doc/src/Mnesia_chap5.xmlsrc index 62759c624b..0265e0efa0 100644 --- a/lib/mnesia/doc/src/Mnesia_chap5.xmlsrc +++ b/lib/mnesia/doc/src/Mnesia_chap5.xmlsrc @@ -226,8 +226,10 @@ not known beforehand, all fragments are searched for matching records.</p> <p>Notice that in <c>ordered_set</c> tables, the records - are ordered per fragment, and the the order is undefined in - results returned by <c>select</c> and <c>match_object</c>.</p> + are ordered per fragment, and the order is undefined in + results returned by <c>select</c> and <c>match_object</c>, + as well as <c>first</c>, <c>next</c>, <c>prev</c> and + <c>last</c>.</p> <p>The following code illustrates how a <c>Mnesia</c> table is converted to be a fragmented table and how more fragments are added later:</p> |