mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
24 lines
1.4 KiB
SQL
24 lines
1.4 KiB
SQL
-- Tags: no-tsan, no-asan, no-ubsan, no-msan, no-debug, no-fasttest
|
|
-- Tag no-fasttest: Not sure why fail even in sequential mode. Disabled for now to make some progress.
|
|
|
|
SET allow_introspection_functions = 1;
|
|
|
|
SET query_profiler_real_time_period_ns = 100000000;
|
|
SET log_queries = 1;
|
|
SELECT sleep(0.5), ignore('test real time query profiler');
|
|
SET log_queries = 0;
|
|
SYSTEM FLUSH LOGS;
|
|
|
|
WITH addressToLine(arrayJoin(trace) AS addr) || '#' || demangle(addressToSymbol(addr)) AS symbol
|
|
SELECT count() > 0 FROM system.trace_log t WHERE query_id = (SELECT query_id FROM system.query_log WHERE current_database = currentDatabase() AND query LIKE '%test real time query profiler%' AND query NOT LIKE '%system%' ORDER BY event_time DESC LIMIT 1) AND symbol LIKE '%FunctionSleep%';
|
|
|
|
SET query_profiler_real_time_period_ns = 0;
|
|
SET query_profiler_cpu_time_period_ns = 1000000;
|
|
SET log_queries = 1;
|
|
SELECT count(), ignore('test cpu time query profiler') FROM numbers(1000000000);
|
|
SET log_queries = 0;
|
|
SYSTEM FLUSH LOGS;
|
|
|
|
WITH addressToLine(arrayJoin(trace) AS addr) || '#' || demangle(addressToSymbol(addr)) AS symbol
|
|
SELECT count() > 0 FROM system.trace_log t WHERE query_id = (SELECT query_id FROM system.query_log WHERE current_database = currentDatabase() AND query LIKE '%test cpu time query profiler%' AND query NOT LIKE '%system%' ORDER BY event_time DESC LIMIT 1) AND symbol LIKE '%Source%';
|