nullable полями
С одной стороны есть тикет https://github.com/tarantool/tarantool/issues/1557
В нем есть формулировки, которые тяжело однозначно интерпретировать с первого раза, и ссылки на подробные разборы unique constraints, понять которые еще тяжелее (ну или просто очень лениво)
Вопрос в итоге такой: точно ли tarantool должен позволять вставлять несколько null-значений в объявленный уникальным столбец, или это бага и достойно тикета?
tarantool --version
Tarantool 1.10.2-98-gcb1bc17
и минимальный init.lua
box.cfg{}
local test = box.schema.space.create('test')
test:format({
{ name = 'id', type = 'number' };
{ name = 'nullable', type = 'number', is_nullable = true };
})
test:create_index('primary', {
type = 'tree';
parts = { 'id' };
})
test:create_index('nullable_test', {
type = 'tree';
parts = { 'nullable' };
})
test:insert(box.tuple.new{1, box.NULL})
test:insert(box.tuple.new{2, box.NULL}) -- should not be legal
test:insert(box.tuple.new{3, 100})
test:insert(box.tuple.new{4, 100}) -- raises as it should raise
абсолютно аналогично более "человечное" понимание unique constraints ломается при использовании nullable поля в композитных индексах, например
box.cfg{}
local test = box.schema.space.create('test')
test:format({
{ name = 'id', type = 'number' };
{ name = 'nullable', type = 'number', is_nullable = true };
{ name = 'nullless', type = 'number', };
})
test:create_index('primary', {
type = 'tree';
parts = { 'id' };
})
test:create_index('nullable_test', {
type = 'tree';
parts = { 'nullable', 'nullless' };
})
test:insert(box.tuple.new{1, box.NULL, 100})
test:insert(box.tuple.new{2, box.NULL, 100}) -- should not be legal
test:insert(box.tuple.new{3, 100, 100})
test:insert(box.tuple.new{4, 100, 100}) -- raises as it should raise
Налов можно вставлять много, даже в уникальный индекс
Обсуждают сегодня