box.schema.space.create('tester', {format = {{'ID','unsigned'}, {'USER_DATA','map', is_nullable = true}}})
user_space:create_index('ID', {unique = true, parts = {{'ID'}}})
user_space:create_index('USER_DATA', {type = 'tree', unique = false, parts = {{'USER_DATA.id', 'str', path = 'id'}, {'USER_DATA.is_admin', 'boolean', path = 'is_admin'}}})
user_space:insert({1, {id='', is_admin=true}})
user_space:insert({2, {id='u123', is_admin=false}})
user_space:insert({3, {id='u456', is_admin=false}})
tarantool> user_space.index.USER_DATA:select{nil, false}
---
- []
...
это баг или почему не реагирует на :select{nil, false} ?
А вы какого результата ждете?
Обсуждают сегодня