mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Merge branch 'fix-02950_part_log_bytes_uncompressed' into fix_992
This commit is contained in:
commit
410051a8b5
@ -1,3 +1,6 @@
|
|||||||
|
-- Tags: no-random-merge-tree-settings, no-random-settings
|
||||||
|
-- Because we compare part sizes, and they could be affected by index granularity and index compression settings.
|
||||||
|
|
||||||
CREATE TABLE part_log_bytes_uncompressed (
|
CREATE TABLE part_log_bytes_uncompressed (
|
||||||
key UInt8,
|
key UInt8,
|
||||||
value UInt8
|
value UInt8
|
||||||
@ -17,7 +20,8 @@ ALTER TABLE part_log_bytes_uncompressed DROP PART 'all_4_4_0' SETTINGS mutations
|
|||||||
|
|
||||||
SYSTEM FLUSH LOGS;
|
SYSTEM FLUSH LOGS;
|
||||||
|
|
||||||
SELECT event_type, table, part_name, bytes_uncompressed > 0, size_in_bytes < bytes_uncompressed FROM system.part_log
|
SELECT event_type, table, part_name, bytes_uncompressed > 0, size_in_bytes < bytes_uncompressed ? '1' : toString((size_in_bytes, bytes_uncompressed))
|
||||||
|
FROM system.part_log
|
||||||
WHERE event_date >= yesterday() AND database = currentDatabase() AND table = 'part_log_bytes_uncompressed'
|
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
|
AND (event_type != 'RemovePart' OR part_name = 'all_4_4_0') -- ignore removal of other parts
|
||||||
ORDER BY part_name, event_type;
|
ORDER BY part_name, event_type;
|
||||||
|
Loading…
Reference in New Issue
Block a user