Merge pull request #71931 from ClickHouse/Avogar-patch-7

Fix flaky test 03262_column_sizes_with_dynamic_structure
This commit is contained in:
Pavel Kruglov 2024-11-14 16:22:42 +00:00 committed by GitHub
commit d3db070cc5
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_json_type = 1;
@ -10,10 +10,10 @@ insert into test select number, '{"a" : 42, "b" : "Hello, World"}' from numbers(
SELECT
`table`,
formatReadableQuantity(sum(rows)) AS rows,
formatReadableSize(sum(data_uncompressed_bytes)) AS data_size_uncompressed,
formatReadableSize(sum(data_compressed_bytes)) AS data_size_compressed,
formatReadableSize(sum(bytes_on_disk)) AS total_size_on_disk
sum(rows) AS rows,
floor(sum(data_uncompressed_bytes) / (1024 * 1024)) AS data_size_uncompressed,
floor(sum(data_compressed_bytes) / (1024 * 1024)) AS data_size_compressed,
floor(sum(bytes_on_disk) / (1024 * 1024)) AS total_size_on_disk
FROM system.parts
WHERE active AND (database = currentDatabase()) AND (`table` = 'test')
GROUP BY `table`