Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_space/_space_sequence — English |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_space/_space_sequence — English |
box.schema.sequence.create('id_seq',{min=1000, start=1000})
-- Create a space --
box.schema.space.create('customers')
-- Create an index that uses the sequence --
box.space.customers:create_index('primary',{ sequence = 'id_seq' })
-- Create a space --
box.schema.space.create('orders')
-- Create an index that uses an auto sequence --
box.space.orders:create_index( 'primary', { sequence = true })
-- Check the connections between spaces and sequences
box.space._space_sequence:select{}
--[[
---
- - [512, 1, false, 0, '']
- [513, 2, true, 0, '']
...
--]]