mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
8 lines
311 B
SQL
8 lines
311 B
SQL
-- We check the existence of queries and metrics and don't check the results (a smoke test).
|
|
|
|
SYSTEM DROP MMAP CACHE;
|
|
|
|
SET system_events_show_zero_values = 1;
|
|
SELECT event FROM system.events WHERE event LIKE '%MMap%' ORDER BY event;
|
|
SELECT metric FROM system.metrics WHERE metric LIKE '%MMap%' ORDER BY metric;
|