You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dbms/tests/queries/0_stateless/00974_query_profiler.sql
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ SET log_queries = 1;
5
5
SELECT sleep(0.5), ignore('test real time query profiler');
6
6
SET log_queries =0;
7
7
SYSTEM FLUSH LOGS;
8
-
WITH addressToSymbol(arrayJoin(trace)) AS symbol SELECTcount() >0FROMsystem.trace_log t WHERE event_date >= yesterday() AND query_id = (SELECT query_id FROMsystem.query_logWHERE event_date >= yesterday() AND query LIKE'%test real time query profiler%'ORDER BY event_time DESCLIMIT1) AND symbol LIKE'%FunctionSleep%';
8
+
WITH addressToSymbol(arrayJoin(trace)) AS symbol SELECTcount() >0FROMsystem.trace_log t WHERE event_date >= yesterday() AND query_id = (SELECT query_id FROMsystem.query_logWHERE event_date >= yesterday() AND query LIKE'%test real time query profiler%'ORDER BY event_time DESCLIMIT1) AND symbol LIKE'%processOrdinaryQuery%';
0 commit comments