Let's order by part name to avoid flakiness

This commit is contained in:
Jordi Villar 2023-12-23 17:33:35 +01:00
parent 56e7965d8d
commit 01289411da
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
NewPart part_log_bytes_uncompressed all_1_1_0 1 1
NewPart part_log_bytes_uncompressed all_2_2_0 1 1
MergeParts part_log_bytes_uncompressed all_1_2_1 1 1
MutatePart part_log_bytes_uncompressed all_1_2_1_3 1 1
NewPart part_log_bytes_uncompressed all_2_2_0 1 1
NewPart part_log_bytes_uncompressed all_4_4_0 1 1
NewPart part_log_bytes_uncompressed all_4_4_1 0 0
RemovePart part_log_bytes_uncompressed all_4_4_0 1 1
NewPart part_log_bytes_uncompressed all_4_4_1 0 0

View File

@ -19,6 +19,6 @@ SYSTEM FLUSH LOGS;
SELECT event_type, table, part_name, bytes_uncompressed > 0, size_in_bytes < bytes_uncompressed FROM system.part_log
WHERE event_date >= yesterday() AND database = currentDatabase() AND table = 'part_log_bytes_uncompressed'
ORDER BY event_time_microseconds;
ORDER BY part_name;
DROP TABLE part_log_bytes_uncompressed;