ClickHouse/tests/queries/0_stateless/01091_num_threads.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.6 KiB
MySQL
Raw Normal View History

2023-03-17 20:49:02 +00:00
-- Tags: no-parallel
2020-03-03 13:54:28 +00:00
set log_queries=1;
set log_query_threads=1;
2022-03-24 21:12:26 +00:00
set max_threads=0;
2020-03-03 13:54:28 +00:00
WITH 01091 AS id SELECT 1;
2020-03-03 13:55:40 +00:00
SYSTEM FLUSH LOGS;
2020-03-03 13:54:28 +00:00
2020-06-15 23:42:10 +00:00
WITH
2020-03-03 13:54:28 +00:00
(
SELECT query_id
FROM system.query_log
WHERE current_database = currentDatabase() AND (normalizeQuery(query) like normalizeQuery('WITH 01091 AS id SELECT 1;')) AND (event_date >= (today() - 1))
2020-03-03 13:54:28 +00:00
ORDER BY event_time DESC
LIMIT 1
) AS id
SELECT uniqExact(thread_id)
FROM system.query_thread_log
2020-05-25 10:06:27 +00:00
WHERE (event_date >= (today() - 1)) AND (query_id = id) AND (thread_id != master_thread_id);
2020-03-03 13:54:28 +00:00
with 01091 as id select sum(number) from numbers(1000000);
2020-03-03 13:55:40 +00:00
SYSTEM FLUSH LOGS;
2020-03-03 13:54:28 +00:00
2020-06-15 23:42:10 +00:00
WITH
2020-03-03 13:54:28 +00:00
(
SELECT query_id
FROM system.query_log
WHERE current_database = currentDatabase() AND (normalizeQuery(query) = normalizeQuery('with 01091 as id select sum(number) from numbers(1000000);')) AND (event_date >= (today() - 1))
2020-03-03 13:54:28 +00:00
ORDER BY event_time DESC
LIMIT 1
) AS id
2022-07-13 19:50:40 +00:00
SELECT uniqExact(thread_id) > 2
2020-03-03 13:54:28 +00:00
FROM system.query_thread_log
2020-05-25 10:06:27 +00:00
WHERE (event_date >= (today() - 1)) AND (query_id = id) AND (thread_id != master_thread_id);
2020-03-03 13:54:28 +00:00
with 01091 as id select sum(number) from numbers_mt(1000000);
2020-03-03 13:55:40 +00:00
SYSTEM FLUSH LOGS;
2020-03-03 13:54:28 +00:00
2020-06-15 23:42:10 +00:00
WITH
2020-03-03 13:54:28 +00:00
(
SELECT query_id
FROM system.query_log
WHERE current_database = currentDatabase() AND (normalizeQuery(query) = normalizeQuery('with 01091 as id select sum(number) from numbers_mt(1000000);')) AND (event_date >= (today() - 1))
2020-03-03 13:54:28 +00:00
ORDER BY event_time DESC
LIMIT 1
) AS id
SELECT uniqExact(thread_id) > 2
FROM system.query_thread_log
2020-05-25 10:06:27 +00:00
WHERE (event_date >= (today() - 1)) AND (query_id = id) AND (thread_id != master_thread_id);