File tree 1 file changed +25
-25
lines changed
1 file changed +25
-25
lines changed Original file line number Diff line number Diff line change 23
23
-- sys doesn't exist in MySQL <= 5.6 or MariaDB 10.5
24
24
25
25
SELECT
26
- user,
27
- db,
28
- program_name,
29
- command,
30
- state,
31
- time ,
32
- current_statement,
33
- current_memory,
34
- progress,
35
- lock_latency,
36
- rows_examined,
37
- rows_sent,
38
- rows_affected,
39
- tmp_tables,
40
- tmp_disk_tables,
41
- full_scan,
42
- last_statement,
43
- last_statement_latency,
44
- last_wait,
45
- last_wait_latency,
46
- trx_latency,
47
- trx_state
26
+ user,
27
+ db,
28
+ program_name,
29
+ command,
30
+ state,
31
+ time ,
32
+ current_statement,
33
+ current_memory,
34
+ progress,
35
+ lock_latency,
36
+ rows_examined,
37
+ rows_sent,
38
+ rows_affected,
39
+ tmp_tables,
40
+ tmp_disk_tables,
41
+ full_scan,
42
+ last_statement,
43
+ last_statement_latency,
44
+ last_wait,
45
+ last_wait_latency,
46
+ trx_latency,
47
+ trx_state
48
48
FROM
49
- sys .session
49
+ sys .session
50
50
WHERE
51
- user <> ' sql/event_scheduler'
51
+ user <> ' sql/event_scheduler'
52
52
ORDER BY
53
- current_memory DESC ;
53
+ current_memory DESC ;
You can’t perform that action at this time.
0 commit comments