mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
less flaky test
This commit is contained in:
parent
6acc92ffd9
commit
ab27d8920f
@ -7,6 +7,8 @@ WITH (
|
||||
SELECT query_start_time_microseconds
|
||||
FROM system.query_log
|
||||
WHERE current_database = currentDatabase()
|
||||
AND query like 'SELECT \'01461_query%'
|
||||
AND event_date >= yesterday()
|
||||
ORDER BY query_start_time DESC
|
||||
LIMIT 1
|
||||
) AS time_with_microseconds,
|
||||
@ -14,6 +16,8 @@ WITH (
|
||||
SELECT query_start_time
|
||||
FROM system.query_log
|
||||
WHERE current_database = currentDatabase()
|
||||
AND query like 'SELECT \'01461_query%'
|
||||
AND event_date >= yesterday()
|
||||
ORDER BY query_start_time DESC
|
||||
LIMIT 1
|
||||
) AS t)
|
||||
@ -27,6 +31,8 @@ WITH (
|
||||
SELECT query_start_time_microseconds
|
||||
FROM system.query_thread_log
|
||||
WHERE current_database = currentDatabase()
|
||||
AND query like 'SELECT \'01461_query%'
|
||||
AND event_date >= yesterday()
|
||||
ORDER BY query_start_time DESC
|
||||
LIMIT 1
|
||||
) AS time_with_microseconds,
|
||||
@ -34,6 +40,8 @@ WITH (
|
||||
SELECT query_start_time
|
||||
FROM system.query_thread_log
|
||||
WHERE current_database = currentDatabase()
|
||||
AND query like 'SELECT \'01461_query%'
|
||||
AND event_date >= yesterday()
|
||||
ORDER BY query_start_time DESC
|
||||
LIMIT 1
|
||||
) AS t)
|
||||
|
Loading…
Reference in New Issue
Block a user