We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the documentation of module uuid https://www.tarantool.io/en/doc/latest/reference/reference_lua/uuid/# there is an example statement
box.space.test:create_index("pk", {parts={field = 1, type = 'uuid'}})
which doesn't work. Perhaps the intention was to write either
box.space.test:create_index("pk", {parts={{field = 1, type = 'uuid'}}})
or
box.space.test:create_index("pk", {parts={1, type = 'uuid'}})
See also issue #1737.
The text was updated successfully, but these errors were encountered:
fixes gh-1932 fix broken example in uuid.rst
bea677d
fixes gh-1932 fix broken example in uuid.rst (#2026)
3fa5b7c
Onvember
Successfully merging a pull request may close this issue.
In the documentation of module uuid
https://www.tarantool.io/en/doc/latest/reference/reference_lua/uuid/#
there is an example statement
which doesn't work.
Perhaps the intention was to write either
or
See also issue #1737.
The text was updated successfully, but these errors were encountered: