diff options
author | Dan Gudmundsson <[email protected]> | 2011-12-07 09:27:14 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2011-12-07 09:27:14 +0100 |
commit | 6b0ab16b86cad902e85b077a078b8f7a6b831205 (patch) | |
tree | ff87937bfeb1464fee10d49fd2f7879394760b3f /lib/mnesia/src/mnesia_controller.erl | |
parent | 71249e713aaf0f6aea513fd2347b0c5f303d1e6e (diff) | |
parent | 14335e788f03ffdbd0540c20623eed9f1fc58de5 (diff) | |
download | otp-6b0ab16b86cad902e85b077a078b8f7a6b831205.tar.gz otp-6b0ab16b86cad902e85b077a078b8f7a6b831205.tar.bz2 otp-6b0ab16b86cad902e85b077a078b8f7a6b831205.zip |
Merge branch 'dgud/mnesia/impl-table-options/OTP-8970'
* dgud/mnesia/impl-table-options/OTP-8970:
[mnesia] Add possibility for implementation dependent storage options to create_table
Diffstat (limited to 'lib/mnesia/src/mnesia_controller.erl')
-rw-r--r-- | lib/mnesia/src/mnesia_controller.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/mnesia/src/mnesia_controller.erl b/lib/mnesia/src/mnesia_controller.erl index 6a561394d5..836510a80d 100644 --- a/lib/mnesia/src/mnesia_controller.erl +++ b/lib/mnesia/src/mnesia_controller.erl @@ -279,11 +279,8 @@ rec_tabs([], _, _, Init) -> unlink(Init), ok. -%% New function that does exactly what get_cstructs() used to do. -%% When this function is called, we know that the calling node knows -%% how to convert cstructs on the receiving end (should they differ). get_remote_cstructs() -> - call(get_cstructs). + get_cstructs(). %% Sigh not forward compatible always check version %% Old function kept for backwards compatibility; converts cstructs before sending. get_cstructs() -> |