mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Merge pull request #54951 from ClickHouse/remove-test-system-stack-trace
Remove test `01051_system_stack_trace`
This commit is contained in:
commit
e96dde24d3
@ -1,18 +0,0 @@
|
||||
-- { echo }
|
||||
SELECT count() > 0 FROM system.stack_trace WHERE query_id != '' AND thread_name = 'TCPHandler';
|
||||
1
|
||||
-- opimization for not reading /proc/self/task/{}/comm and avoid sending signal
|
||||
SELECT countIf(thread_id > 0) > 0 FROM system.stack_trace;
|
||||
1
|
||||
-- optimization for trace
|
||||
SELECT count(trace) > 0 FROM system.stack_trace WHERE length(trace) > 0 LIMIT 1;
|
||||
1
|
||||
-- optimization for query_id
|
||||
SELECT length(query_id) > 0 FROM system.stack_trace WHERE query_id != '' AND thread_name = 'TCPHandler' LIMIT 1;
|
||||
1
|
||||
-- optimization for thread_name
|
||||
SELECT length(thread_name) > 0 FROM system.stack_trace WHERE thread_name != '' LIMIT 1;
|
||||
1
|
||||
-- enough rows (optimizations works "correctly")
|
||||
SELECT count() > 100 FROM system.stack_trace;
|
||||
1
|
@ -1,20 +0,0 @@
|
||||
-- Tags: no-parallel
|
||||
-- Tag no-parallel: to decrease failure probability of collecting stack traces
|
||||
|
||||
-- NOTE: It is OK to have bigger timeout here since:
|
||||
-- a) this test is marked as no-parallel
|
||||
-- b) there is a filter by thread_name, so it will send signals only to the threads with the name TCPHandler
|
||||
SET storage_system_stack_trace_pipe_read_timeout_ms = 5000;
|
||||
|
||||
-- { echo }
|
||||
SELECT count() > 0 FROM system.stack_trace WHERE query_id != '' AND thread_name = 'TCPHandler';
|
||||
-- opimization for not reading /proc/self/task/{}/comm and avoid sending signal
|
||||
SELECT countIf(thread_id > 0) > 0 FROM system.stack_trace;
|
||||
-- optimization for trace
|
||||
SELECT count(trace) > 0 FROM system.stack_trace WHERE length(trace) > 0 LIMIT 1;
|
||||
-- optimization for query_id
|
||||
SELECT length(query_id) > 0 FROM system.stack_trace WHERE query_id != '' AND thread_name = 'TCPHandler' LIMIT 1;
|
||||
-- optimization for thread_name
|
||||
SELECT length(thread_name) > 0 FROM system.stack_trace WHERE thread_name != '' LIMIT 1;
|
||||
-- enough rows (optimizations works "correctly")
|
||||
SELECT count() > 100 FROM system.stack_trace;
|
Loading…
Reference in New Issue
Block a user