Sorting is difficult

This commit is contained in:
Jordi Villar 2023-12-23 19:07:17 +01:00
parent 01289411da
commit f713e28438

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 part_name;
ORDER BY part_name, event_type;
DROP TABLE part_log_bytes_uncompressed;