mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
Merge pull request #72488 from ClickHouse/backport/24.10/71931
Backport #71931 to 24.10: Fix flaky test 03262_column_sizes_with_dynamic_structure
This commit is contained in:
commit
f2dc05605c
@ -1 +1 @@
|
|||||||
test 10.00 million 352.87 MiB 39.43 MiB 39.45 MiB
|
test 10000000 352 39 39
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
-- Tags: no-random-settings
|
-- Tags: no-random-settings, no-fasttest
|
||||||
|
|
||||||
set allow_experimental_dynamic_type = 1;
|
set allow_experimental_dynamic_type = 1;
|
||||||
set allow_experimental_json_type = 1;
|
set allow_experimental_json_type = 1;
|
||||||
@ -10,10 +10,10 @@ insert into test select number, '{"a" : 42, "b" : "Hello, World"}' from numbers(
|
|||||||
|
|
||||||
SELECT
|
SELECT
|
||||||
`table`,
|
`table`,
|
||||||
formatReadableQuantity(sum(rows)) AS rows,
|
sum(rows) AS rows,
|
||||||
formatReadableSize(sum(data_uncompressed_bytes)) AS data_size_uncompressed,
|
floor(sum(data_uncompressed_bytes) / (1024 * 1024)) AS data_size_uncompressed,
|
||||||
formatReadableSize(sum(data_compressed_bytes)) AS data_size_compressed,
|
floor(sum(data_compressed_bytes) / (1024 * 1024)) AS data_size_compressed,
|
||||||
formatReadableSize(sum(bytes_on_disk)) AS total_size_on_disk
|
floor(sum(bytes_on_disk) / (1024 * 1024)) AS total_size_on_disk
|
||||||
FROM system.parts
|
FROM system.parts
|
||||||
WHERE active AND (database = currentDatabase()) AND (`table` = 'test')
|
WHERE active AND (database = currentDatabase()) AND (`table` = 'test')
|
||||||
GROUP BY `table`
|
GROUP BY `table`
|
||||||
|
Loading…
Reference in New Issue
Block a user