summaryrefslogtreecommitdiff
path: root/scripts/sys_schema/views/p_s/processlist.sql
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/sys_schema/views/p_s/processlist.sql')
-rw-r--r--scripts/sys_schema/views/p_s/processlist.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/sys_schema/views/p_s/processlist.sql b/scripts/sys_schema/views/p_s/processlist.sql
index 33e8969f73f..e289a07bd34 100644
--- a/scripts/sys_schema/views/p_s/processlist.sql
+++ b/scripts/sys_schema/views/p_s/processlist.sql
@@ -82,9 +82,9 @@ SELECT pps.thread_id AS thd_id,
pps.processlist_time AS time,
sys.format_statement(pps.processlist_info) AS current_statement,
IF(esc.end_event_id IS NULL,
- sys.format_time(esc.timer_wait),
+ format_pico_time(esc.timer_wait),
NULL) AS statement_latency,
- sys.format_time(esc.lock_time) AS lock_latency,
+ format_pico_time(esc.lock_time) AS lock_latency,
esc.rows_examined AS rows_examined,
esc.rows_sent AS rows_sent,
esc.rows_affected AS rows_affected,
@@ -95,12 +95,12 @@ SELECT pps.thread_id AS thd_id,
sys.format_statement(esc.sql_text),
NULL) AS last_statement,
IF(esc.end_event_id IS NOT NULL,
- sys.format_time(esc.timer_wait),
+ format_pico_time(esc.timer_wait),
NULL) AS last_statement_latency,
ewc.event_name AS last_wait,
IF(ewc.end_event_id IS NULL AND ewc.event_name IS NOT NULL,
'Still Waiting',
- sys.format_time(ewc.timer_wait)) last_wait_latency,
+ format_pico_time(ewc.timer_wait)) last_wait_latency,
ewc.source
FROM performance_schema.threads AS pps
LEFT JOIN performance_schema.events_waits_current AS ewc USING (thread_id)