Skip to content

The 'user_properties' option excluded from documentation of mnesia_create_table/2 #10812

@uwiger

Description

@uwiger

Describe the bug
In the documentation of mnesia:create_table/2, the user_properties option is omitted.

To Reproduce
See the online docs

Expected behavior
The feature still clearly works:

Eshell V15.2.7 (press Ctrl+G to abort, type help(). for help)
1> mnesia:start().
ok
2> mnesia:create_table(t, [{user_properties,[{a,1}]}]).
{atomic,ok}
3> mnesia:table_info(t,user_properties).
[{a,1}]

Is this a deliberate omission? I see that the functions [read|write|delete]_table_property/2 are also undocumented. The create_option() type does include user_properties, and the table_info/2 function documentation also includes it.

Affected versions
This seems to have been the case since the new documentation was introduced, i.e. 27.0

Metadata

Metadata

Assignees

Labels

bugIssue is reported as a bugteam:PSAssigned to OTP team PS

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions