Skip to content

Commit a95f28f

Browse files
committed
tests: fix 02441_alter_delete_and_drop_column flakiness (filter out GET_PART)
1 parent 6cc0b5a commit a95f28f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/queries/0_stateless/02441_alter_delete_and_drop_column.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ select sleepEachRow(2) from url('http://localhost:8123/?param_tries={1..10}&quer
2121
'select * from system.replication_queue where database=''' || currentDatabase() || ''' and table=''mut'' and type=''ALTER_METADATA'''
2222
), 'LineAsString', 's String') settings max_threads=1, http_make_head_request=0 format Null;
2323

24-
select type, new_part_name, parts_to_merge from system.replication_queue where database=currentDatabase() and table='mut';
24+
select type, new_part_name, parts_to_merge from system.replication_queue where database=currentDatabase() and table='mut' and type != 'GET_PART';
2525
system start merges mut;
2626
set receive_timeout=30;
2727
system sync replica mut;

0 commit comments

Comments
 (0)