[skip ci] Add skipped compact operation cases (#11509)

Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
This commit is contained in:
ThreadDao 2021-11-09 19:56:18 +08:00 committed by GitHub
parent 625acfb597
commit 8db3783782
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,4 +90,39 @@ class TestCompactionParams(TestcaseBase):
@pytest.mark.skip(reason="Waiting for development")
class TestCompactionOperation(TestcaseBase):
pass
@pytest.mark.tags(CaseLabel.L2)
def test_compact_after_index(self):
"""
target: test compact after create index
method: 1.insert data into two segments
2.create index
3.compact
4.search
expected: Verify segment info and index info
"""
pass
@pytest.mark.tags(CaseLabel.L2)
def test_compact_after_binary_index(self):
"""
target: test compact after create index
method: 1.insert binary data into two segments
2.create binary index
3.compact
4.search
expected: Verify segment info and index info
"""
pass
@pytest.mark.tags(CaseLabel.L2)
def test_compact_before_index(self):
"""
target: test compact and create index
method: 1.insert data into two segments
2.compact
3.create index
4.search
expected: Verify search result and index info
"""
pass