Update test.py

This commit is contained in:
Kseniia Sumarokova 2024-01-20 14:59:13 +01:00 committed by GitHub
parent 7c66141e08
commit caf9d8df6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -413,6 +413,8 @@ def test_broken_projections_in_backups(cluster):
table_name = "test4"
create_table(node, table_name, 1)
node.qeury("SYSTEM STOP MERGES")
insert(node, table_name, 0, 5)
insert(node, table_name, 5, 5)
insert(node, table_name, 10, 5)
@ -557,3 +559,4 @@ def test_broken_projections_in_backups(cluster):
assert "all_1_1_0\tproj\tNO_FILE_IN_DATA_PART" == get_broken_projections_info(
node, table_name
)
node.qeury("SYSTEM START MERGES")