Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_space/frommap — English |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_space/frommap — English |
-- Create a space with that format.
-- Create a tuple based on a map consistent with that space.
-- Create a table based on a map consistent with that space.
tarantool> format1 = {{name='a',type='unsigned'},{name='b',type='scalar'}}
---
...
tarantool> s = box.schema.create_space('test', {format = format1})
---
...
tarantool> s:frommap({b = 'x', a = 123456})
---
- [123456, 'x']
...
tarantool> s:frommap({b = 'x', a = 123456}, {table = true})
---
- - 123456
- x
...