Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_tuple/field_name — English |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_tuple/field_name — English |
---
...
tarantool> format[1] = {name = 'field1', type = 'unsigned'}
---
...
tarantool> format[2] = {name = 'field2', type = 'string'}
---
...
tarantool> s = box.schema.space.create('test', {format = format})
---
...
tarantool> pk = s:create_index('pk')
---
...
tarantool> t = s:replace{1, 'Я'}
---
...
tarantool> t['field2']
---
- Я
...