We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
https://www.tarantool.io/ru/doc/2.2/book/box/data_model/
Example:
i = s:create_index('primary', {type = 'hash', parts = {1, 'unsigned'}})
But it's old way to create index that was designed before option is_nullable was introduced.
is_nullable
Let's change example to
i = s:create_index('primary', {type = 'hash', parts = {field = 1, type = 'unsigned'}})
The text was updated successfully, but these errors were encountered:
inspired by tarantool/tarantool#4519 and tarantool/tarantool#4519 (comment)
Sorry, something went wrong.
Also please update here https://www.tarantool.io/en/doc/2.2/book/box/box_space/#box-space-create-index
parts section
Fixes gh-919
6a075d8
Fixes gh-919 (changed all examles of create_index() to the new syntax)
795ea7c
Fixes gh-919 made the table look correct
a347f9d
Fixes gh-842, gh-914, gh-919, gh-958 by onvember (#969)
3ff14f8
Fixes gh-842 Make each function a link Fixes gh-914 Module string Fixes gh-919 Update index definition description Fixes gh-958 Module utf8
Onvember
No branches or pull requests
https://www.tarantool.io/ru/doc/2.2/book/box/data_model/
Example:
But it's old way to create index that was designed before option
is_nullable
was introduced.Let's change example to
The text was updated successfully, but these errors were encountered: