Basic test that stats are non-zero

This commit is contained in:
Alexander Gololobov 2023-07-03 22:39:42 +02:00
parent 5512c307db
commit ff0197543e
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1 @@
1 1 1 1 1

View File

@ -0,0 +1,13 @@
WITH
(SELECT value IN ('ON', '1') FROM system.build_options WHERE name = 'USE_JEMALLOC') AS jemalloc_enabled,
(SELECT count() FROM system.jemalloc_bins) AS total_bins,
(SELECT count() FROM system.jemalloc_bins WHERE large) AS large_bins,
(SELECT count() FROM system.jemalloc_bins WHERE NOT large) AS small_bins,
(SELECT sum(size * (nmalloc - ndalloc)) FROM system.jemalloc_bins WHERE large) AS large_allocated_bytes,
(SELECT sum(size * (nmalloc - ndalloc)) FROM system.jemalloc_bins WHERE NOT large) AS small_allocated_bytes
SELECT
(total_bins > 0) = jemalloc_enabled,
(large_bins > 0) = jemalloc_enabled,
(small_bins > 0) = jemalloc_enabled,
(large_allocated_bytes > 0) = jemalloc_enabled,
(small_allocated_bytes > 0) = jemalloc_enabled;