mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 16:42:04 +00:00
41 lines
1.4 KiB
SQL
41 lines
1.4 KiB
SQL
SET log_queries = 1;
|
|
SELECT '01461_query_log_query_start_time_milliseconds_test';
|
|
SYSTEM FLUSH LOGS;
|
|
-- assumes that the query_start_time field is already accurate.
|
|
WITH (
|
|
(
|
|
SELECT query_start_time_microseconds
|
|
FROM system.query_log
|
|
WHERE current_database = currentDatabase()
|
|
ORDER BY query_start_time DESC
|
|
LIMIT 1
|
|
) AS time_with_microseconds,
|
|
(
|
|
SELECT query_start_time
|
|
FROM system.query_log
|
|
WHERE current_database = currentDatabase()
|
|
ORDER BY query_start_time DESC
|
|
LIMIT 1
|
|
) AS t)
|
|
SELECT if(dateDiff('second', toDateTime(time_with_microseconds), toDateTime(t)) = 0, 'ok', 'fail'); --
|
|
|
|
SELECT '01461_query_thread_log_query_start_time_milliseconds_test';
|
|
SYSTEM FLUSH LOGS;
|
|
-- assumes that the query_start_time field is already accurate.
|
|
WITH (
|
|
(
|
|
SELECT query_start_time_microseconds
|
|
FROM system.query_thread_log
|
|
WHERE current_database = currentDatabase()
|
|
ORDER BY query_start_time DESC
|
|
LIMIT 1
|
|
) AS time_with_microseconds,
|
|
(
|
|
SELECT query_start_time
|
|
FROM system.query_thread_log
|
|
WHERE current_database = currentDatabase()
|
|
ORDER BY query_start_time DESC
|
|
LIMIT 1
|
|
) AS t)
|
|
SELECT if(dateDiff('second', toDateTime(time_with_microseconds), toDateTime(t)) = 0, 'ok', 'fail'); --
|