forked from TrueCloudLab/frostfs-node
[#1412] engine: Add IsIndexedContainer
flag
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
899cd55c27
commit
1b520f7973
19 changed files with 182 additions and 50 deletions
|
@ -58,9 +58,9 @@ func TestDeleteBigObject(t *testing.T) {
|
|||
defer e.Close(context.Background())
|
||||
|
||||
for i := range children {
|
||||
require.NoError(t, Put(context.Background(), e, children[i]))
|
||||
require.NoError(t, Put(context.Background(), e, children[i], false))
|
||||
}
|
||||
require.NoError(t, Put(context.Background(), e, link))
|
||||
require.NoError(t, Put(context.Background(), e, link, false))
|
||||
|
||||
addrParent := object.AddressOf(parent)
|
||||
checkGetError[*objectSDK.SplitInfoError](t, e, addrParent, true)
|
||||
|
@ -126,9 +126,9 @@ func TestDeleteBigObjectWithoutGC(t *testing.T) {
|
|||
defer e.Close(context.Background())
|
||||
|
||||
for i := range children {
|
||||
require.NoError(t, Put(context.Background(), e, children[i]))
|
||||
require.NoError(t, Put(context.Background(), e, children[i], false))
|
||||
}
|
||||
require.NoError(t, Put(context.Background(), e, link))
|
||||
require.NoError(t, Put(context.Background(), e, link, false))
|
||||
|
||||
addrParent := object.AddressOf(parent)
|
||||
checkGetError[*objectSDK.SplitInfoError](t, e, addrParent, true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue