cartridge-java icon indicating copy to clipboard operation
cartridge-java copied to clipboard

Composite Index from Map

Open serg-2 opened this issue 1 year ago • 0 comments

Can't connect to instance of tarantool if any space like this exists:

box.schema.space.create('test') box.space.test:format({ { name = 'id', type = 'unsigned', is_nullable = false }, { name = 'name', type = 'map' , is_nullable = false} }) box.space.test:create_index('super_index', {type = 'tree', parts = { {'name.field1','str'},
{'name.field2','unsigned'} }, unique = false })

Exception: Duplicate key

serg-2 avatar Feb 17 '24 11:02 serg-2