-
Notifications
You must be signed in to change notification settings - Fork 15
Closed
Description
Given this space:
local customers = box.schema.space.create(
'customers',
{
format = {
{name = 'uuid', type = 'uuid'},
{name = 'bucket_id', type = 'unsigned'},
{name = 'name', type = 'string'},
{name = 'tags', type = 'array'},
},
if_not_exists = true,
}
)
customers:create_index('uuid', {
parts = {'uuid'},
if_not_exists = true,
})
customers:create_index('bucket_id', {
parts = {'bucket_id'},
unique = false,
if_not_exists = true,
})
It is impossible to perform crud.select('customers')
, since it fails with an error like
E> LuajitError: /app/.rocks/share/tarantool/crud/select/comparators.lua:53: attempt to compare 'struct tt_uuid' with 'struct tt_uuid'
Metadata
Metadata
Assignees
Labels
No labels