Merge pull request #63672 from ClickHouse/fix-test-part_log_bytes_uncompressed

Fix bad test `02950_part_log_bytes_uncompressed`
This commit is contained in:
Alexey Milovidov 2024-05-12 20:13:14 +00:00 committed by GitHub
commit 7cb10c19f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,6 +19,7 @@ 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'
AND (event_type != 'RemovePart' OR part_name = 'all_4_4_0') -- ignore removal of other parts
ORDER BY part_name, event_type;
DROP TABLE part_log_bytes_uncompressed;