@@ -1007,6 +1007,12 @@ Mnesia forwards calls to the following functions:
1007
1007
- mnesia:index_match_object/4 (index_match_object/2)
1008
1008
- mnesia:index_read/3
1009
1009
- mnesia:table_info/2
1010
+ - mnesia:foldl/4 (foldl/3)
1011
+ - mnesia:foldr/4 (foldr/3)
1012
+ - mnesia:select/3 (select/2)
1013
+ - mnesia:select/4
1014
+ - mnesia:select/1
1015
+ - mnesia:clear_table/1
1010
1016
1011
1017
to the corresponding:
1012
1018
@@ -1024,6 +1030,12 @@ to the corresponding:
1024
1030
- AccessMod:index_match_object(ActivityId, Opaque, Tab, Pattern, Attr, LockKind)
1025
1031
- AccessMod:index_read(ActivityId, Opaque, Tab, SecondaryKey, Attr, LockKind)
1026
1032
- AccessMod:table_info(ActivityId, Opaque, Tab, InfoItem)
1033
+ - AccessMod:foldl(ActivityId, Opaque, Fun, Acc, Tab, LockKind)
1034
+ - AccessMod:foldr(ActivityId, Opaque, Fun, Acc, Tab, LockKind)
1035
+ - AccessMod:select(ActivityId, Opaque, Tab, Spec, LockKind)
1036
+ - AccessMod:select(ActivityId, Opaque, Tab, Spec, NObjects, LockKind)
1037
+ - AccessMod:select_cont(ActivityId, Opaque, Cont)
1038
+ - AccessMod:clear_table(ActivityId, Opaque, Tab, Obj)
1027
1039
1028
1040
`ActivityId` is a record that represents the identity of the enclosing Mnesia
1029
1041
activity. The first field (obtained with
0 commit comments