Loading…
![]() String updated in the repository testing_project / Documentation: reference/reference_lua/box_space/create_index — Russian |
Things to check
Glossary
English | Russian | ||
---|---|---|---|
No related strings found in the glossary. |
Loading…
![]() String updated in the repository testing_project / Documentation: reference/reference_lua/box_space/create_index — Russian |
English | Russian | ||
---|---|---|---|
No related strings found in the glossary. |
box.space.space1:create_index('primary', { parts = { { field = 1,
type = 'scalar',
path = 'age' } } })
box.space.space1:insert({ { age = 44 } })
box.space.space1:select(44)
tarantool> box.space.T:create_index('I',{parts = {{field = 1, type = 'scalar', path = 'age'}}})
tarantool> box.space.T:insert({{age = 44}})
tarantool> box.space.T:select(44)
---
- [{'age': 44}]