diff options
author | Dan Gudmundsson <[email protected]> | 2016-12-05 10:36:31 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2016-12-05 10:36:31 +0100 |
commit | 0d98ab028c299d1af85cf7c24bc9cd3fb2bd0de9 (patch) | |
tree | 4d2693cffaaa9c29a36fe7b0db5cc1acf633c209 /lib/mnesia/src/mnesia.erl | |
parent | 210658e7271a7f1e62721a6ff6d77aa52586e31d (diff) | |
parent | c5fa3721bbe6ea3742703a4662f94a11c2a4d5c1 (diff) | |
download | otp-0d98ab028c299d1af85cf7c24bc9cd3fb2bd0de9.tar.gz otp-0d98ab028c299d1af85cf7c24bc9cd3fb2bd0de9.tar.bz2 otp-0d98ab028c299d1af85cf7c24bc9cd3fb2bd0de9.zip |
Merge branch 'maint'
* maint:
Use off_heap memory queue for mnesia_tm
Preserve key order in mnesia:table_info
Diffstat (limited to 'lib/mnesia/src/mnesia.erl')
-rw-r--r-- | lib/mnesia/src/mnesia.erl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/mnesia/src/mnesia.erl b/lib/mnesia/src/mnesia.erl index 7b0e4976a0..6de7214776 100644 --- a/lib/mnesia/src/mnesia.erl +++ b/lib/mnesia/src/mnesia.erl @@ -2062,9 +2062,10 @@ any_table_info(Tab, Item) when is_atom(Tab) -> [] -> abort({no_exists, Tab, Item}); Props -> - lists:map(fun({setorbag, Type}) -> {type, Type}; - (Prop) -> Prop end, - Props) + Rename = fun ({setorbag, Type}) -> {type, Type}; + (Prop) -> Prop + end, + lists:sort(lists:map(Rename, Props)) end; name -> Tab; |