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:
Pavel Kruglov 2024-11-28 14:17:07 +01:00 committed by GitHub
commit f2dc05605c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
test 10.00 million 352.87 MiB 39.43 MiB 39.45 MiB test 10000000 352 39 39

View File

@ -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`