mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '11.4' into 11.5
This commit is contained in:
@ -274,7 +274,6 @@ execute dump_users;
|
||||
execute dump_hosts;
|
||||
|
||||
--disconnect con1
|
||||
--disconnect con5
|
||||
|
||||
--connection default
|
||||
|
||||
@ -283,6 +282,8 @@ let $wait_condition=
|
||||
select count(*) = 0 from performance_schema.threads
|
||||
where `TYPE`='FOREGROUND' and PROCESSLIST_USER= 'user1';
|
||||
--source include/wait_condition.inc
|
||||
|
||||
--disconnect con5
|
||||
let $wait_condition=
|
||||
select count(*) = 1 from performance_schema.threads
|
||||
where `TYPE`='FOREGROUND' and PROCESSLIST_USER= 'user4';
|
||||
|
@ -32,7 +32,7 @@ SET GLOBAL event_scheduler=ON;
|
||||
|
||||
CREATE TABLE table_t(a INT);
|
||||
DELIMITER |;
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND DO
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND ON COMPLETION NOT PRESERVE DO
|
||||
BEGIN
|
||||
INSERT INTO table_t VALUES(1);
|
||||
END|
|
||||
|
@ -121,12 +121,23 @@ begin
|
||||
where thread_id = my_thread_id
|
||||
and nesting_event_id = my_statement_id
|
||||
order by event_id asc;
|
||||
# Ignore query cache as it may not be enabled
|
||||
select username, event_name, nesting_event_type
|
||||
from performance_schema.events_stages_history
|
||||
where thread_id = my_thread_id
|
||||
and nesting_event_id = my_statement_id and
|
||||
event_name not like "%query cache%"
|
||||
# 1. Ignore query cache as it may not be enabled
|
||||
# 2. MDL wait consists of short 1 second waits (this is not configurable)
|
||||
# repeated until lock_wait_timeout is reached. The stage is changed
|
||||
# to Waiting and back every second. To have predictable result here
|
||||
# the query filters all sequences of X, "Waiting for MDL", X,
|
||||
# leaving just X.
|
||||
with h as (
|
||||
select event_id, username, event_name, nesting_event_type,
|
||||
lag(event_name) over (order by event_id) = lead(event_name) over (order by event_id)
|
||||
and event_name = "stage/sql/Waiting for stored function metadata lock" as v1,
|
||||
lag(event_name, 2) over (order by event_id) = event_name
|
||||
and lag(event_name, 1) over (order by event_id) = "stage/sql/Waiting for stored function metadata lock" as v2
|
||||
from performance_schema.events_stages_history
|
||||
where thread_id = my_thread_id
|
||||
and nesting_event_id = my_statement_id and
|
||||
event_name not like "%query cache%"
|
||||
) select username, event_name, nesting_event_type from h where v1 is not true and v2 is not true
|
||||
order by event_id asc;
|
||||
end;
|
||||
else
|
||||
|
@ -82,9 +82,8 @@ stage/sql/After apply log event NULL NULL
|
||||
stage/sql/Rename result table NULL NULL
|
||||
stage/sql/End of update loop NULL NULL
|
||||
stage/sql/Query end NULL NULL
|
||||
stage/sql/Commit NULL NULL
|
||||
stage/sql/closing tables NULL NULL
|
||||
stage/sql/Commit implicit NULL NULL
|
||||
stage/sql/Query end NULL NULL
|
||||
stage/sql/Starting cleanup NULL NULL
|
||||
stage/sql/Freeing items NULL NULL
|
||||
stage/sql/Reset for next command NULL NULL
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -235,28 +235,28 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 4
|
||||
localhost stage/sql/closing tables 12
|
||||
localhost stage/sql/init 3
|
||||
localhost stage/sql/Opening tables 8
|
||||
localhost stage/sql/starting 6
|
||||
localhost stage/sql/starting 7
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -350,7 +350,7 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 0
|
||||
user2 stage/sql/closing tables 0
|
||||
user2 stage/sql/init 0
|
||||
@ -362,21 +362,21 @@ localhost stage/sql/checking permissions 4
|
||||
localhost stage/sql/closing tables 12
|
||||
localhost stage/sql/init 3
|
||||
localhost stage/sql/Opening tables 8
|
||||
localhost stage/sql/starting 6
|
||||
localhost stage/sql/starting 7
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -489,33 +489,33 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 8
|
||||
localhost stage/sql/closing tables 23
|
||||
localhost stage/sql/init 6
|
||||
localhost stage/sql/Opening tables 15
|
||||
localhost stage/sql/starting 12
|
||||
localhost stage/sql/starting 14
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -619,12 +619,12 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 0
|
||||
user3 stage/sql/closing tables 0
|
||||
user3 stage/sql/init 0
|
||||
@ -636,21 +636,21 @@ localhost stage/sql/checking permissions 8
|
||||
localhost stage/sql/closing tables 23
|
||||
localhost stage/sql/init 6
|
||||
localhost stage/sql/Opening tables 15
|
||||
localhost stage/sql/starting 12
|
||||
localhost stage/sql/starting 14
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -773,38 +773,38 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 12
|
||||
localhost stage/sql/closing tables 34
|
||||
localhost stage/sql/init 9
|
||||
localhost stage/sql/Opening tables 22
|
||||
localhost stage/sql/starting 18
|
||||
localhost stage/sql/starting 21
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -918,17 +918,17 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 0
|
||||
user4 stage/sql/closing tables 0
|
||||
user4 stage/sql/init 0
|
||||
@ -940,21 +940,21 @@ localhost stage/sql/checking permissions 12
|
||||
localhost stage/sql/closing tables 34
|
||||
localhost stage/sql/init 9
|
||||
localhost stage/sql/Opening tables 22
|
||||
localhost stage/sql/starting 18
|
||||
localhost stage/sql/starting 21
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1087,43 +1087,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 24
|
||||
localhost stage/sql/starting 28
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1243,43 +1243,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 25
|
||||
localhost stage/sql/starting 29
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1399,43 +1399,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 26
|
||||
localhost stage/sql/starting 30
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1554,43 +1554,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 27
|
||||
localhost stage/sql/starting 31
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1708,43 +1708,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1863,43 +1863,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2017,43 +2017,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2171,43 +2171,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2325,43 +2325,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2479,43 +2479,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2633,43 +2633,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2787,43 +2787,43 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2963,21 +2963,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3124,14 +3124,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3285,7 +3285,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3439,7 +3439,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3593,7 +3593,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3747,7 +3747,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3901,7 +3901,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4055,7 +4055,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4209,7 +4209,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4363,7 +4363,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4517,7 +4517,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4671,7 +4671,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4825,7 +4825,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4979,7 +4979,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -5105,7 +5105,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -5203,7 +5203,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
|
@ -205,7 +205,7 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -214,14 +214,14 @@ stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -306,7 +306,7 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 0
|
||||
user2 stage/sql/closing tables 0
|
||||
user2 stage/sql/init 0
|
||||
@ -320,14 +320,14 @@ stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -431,12 +431,12 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -445,14 +445,14 @@ stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -547,12 +547,12 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 0
|
||||
user3 stage/sql/closing tables 0
|
||||
user3 stage/sql/init 0
|
||||
@ -566,14 +566,14 @@ stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -687,17 +687,17 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -706,14 +706,14 @@ stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -818,17 +818,17 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 0
|
||||
user4 stage/sql/closing tables 0
|
||||
user4 stage/sql/init 0
|
||||
@ -842,14 +842,14 @@ stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -973,22 +973,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 6
|
||||
user1 stage/sql/starting 7
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -997,14 +997,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1115,22 +1115,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 6
|
||||
user2 stage/sql/starting 7
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -1139,14 +1139,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1257,22 +1257,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 6
|
||||
user3 stage/sql/starting 7
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -1281,14 +1281,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1398,22 +1398,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 6
|
||||
user4 stage/sql/starting 7
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -1422,14 +1422,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1538,22 +1538,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -1562,14 +1562,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1679,22 +1679,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -1703,14 +1703,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1819,22 +1819,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -1843,14 +1843,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1959,22 +1959,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -1983,14 +1983,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2099,22 +2099,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -2123,14 +2123,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2239,22 +2239,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -2263,14 +2263,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2379,22 +2379,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -2403,14 +2403,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2519,22 +2519,22 @@ user1 stage/sql/checking permissions 4
|
||||
user1 stage/sql/closing tables 12
|
||||
user1 stage/sql/init 3
|
||||
user1 stage/sql/Opening tables 8
|
||||
user1 stage/sql/starting 7
|
||||
user1 stage/sql/starting 8
|
||||
user2 stage/sql/checking permissions 4
|
||||
user2 stage/sql/closing tables 11
|
||||
user2 stage/sql/init 3
|
||||
user2 stage/sql/Opening tables 7
|
||||
user2 stage/sql/starting 7
|
||||
user2 stage/sql/starting 8
|
||||
user3 stage/sql/checking permissions 4
|
||||
user3 stage/sql/closing tables 11
|
||||
user3 stage/sql/init 3
|
||||
user3 stage/sql/Opening tables 7
|
||||
user3 stage/sql/starting 7
|
||||
user3 stage/sql/starting 8
|
||||
user4 stage/sql/checking permissions 4
|
||||
user4 stage/sql/closing tables 11
|
||||
user4 stage/sql/init 3
|
||||
user4 stage/sql/Opening tables 7
|
||||
user4 stage/sql/starting 7
|
||||
user4 stage/sql/starting 8
|
||||
execute dump_stages_host;
|
||||
host event_name count_star
|
||||
execute dump_stages_global;
|
||||
@ -2543,14 +2543,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2683,14 +2683,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2823,14 +2823,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2970,7 +2970,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3110,7 +3110,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3250,7 +3250,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3390,7 +3390,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3530,7 +3530,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3670,7 +3670,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3810,7 +3810,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3950,7 +3950,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4090,7 +4090,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4230,7 +4230,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4370,7 +4370,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4510,7 +4510,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4622,7 +4622,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4706,7 +4706,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
|
@ -219,21 +219,21 @@ localhost stage/sql/checking permissions 4
|
||||
localhost stage/sql/closing tables 12
|
||||
localhost stage/sql/init 3
|
||||
localhost stage/sql/Opening tables 8
|
||||
localhost stage/sql/starting 6
|
||||
localhost stage/sql/starting 7
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -317,21 +317,21 @@ localhost stage/sql/checking permissions 4
|
||||
localhost stage/sql/closing tables 12
|
||||
localhost stage/sql/init 3
|
||||
localhost stage/sql/Opening tables 8
|
||||
localhost stage/sql/starting 6
|
||||
localhost stage/sql/starting 7
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -427,21 +427,21 @@ localhost stage/sql/checking permissions 8
|
||||
localhost stage/sql/closing tables 23
|
||||
localhost stage/sql/init 6
|
||||
localhost stage/sql/Opening tables 15
|
||||
localhost stage/sql/starting 12
|
||||
localhost stage/sql/starting 14
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -526,21 +526,21 @@ localhost stage/sql/checking permissions 8
|
||||
localhost stage/sql/closing tables 23
|
||||
localhost stage/sql/init 6
|
||||
localhost stage/sql/Opening tables 15
|
||||
localhost stage/sql/starting 12
|
||||
localhost stage/sql/starting 14
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -637,21 +637,21 @@ localhost stage/sql/checking permissions 12
|
||||
localhost stage/sql/closing tables 34
|
||||
localhost stage/sql/init 9
|
||||
localhost stage/sql/Opening tables 22
|
||||
localhost stage/sql/starting 18
|
||||
localhost stage/sql/starting 21
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -737,21 +737,21 @@ localhost stage/sql/checking permissions 12
|
||||
localhost stage/sql/closing tables 34
|
||||
localhost stage/sql/init 9
|
||||
localhost stage/sql/Opening tables 22
|
||||
localhost stage/sql/starting 18
|
||||
localhost stage/sql/starting 21
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -849,21 +849,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 24
|
||||
localhost stage/sql/starting 28
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -948,21 +948,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 25
|
||||
localhost stage/sql/starting 29
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1047,21 +1047,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 26
|
||||
localhost stage/sql/starting 30
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1145,21 +1145,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 27
|
||||
localhost stage/sql/starting 31
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1242,21 +1242,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1340,21 +1340,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1437,21 +1437,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1534,21 +1534,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1631,21 +1631,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1728,21 +1728,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1825,21 +1825,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1922,21 +1922,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2019,21 +2019,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2123,14 +2123,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2227,7 +2227,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2324,7 +2324,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2421,7 +2421,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2518,7 +2518,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2615,7 +2615,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2712,7 +2712,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2809,7 +2809,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2906,7 +2906,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3003,7 +3003,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3100,7 +3100,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3197,7 +3197,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3294,7 +3294,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3391,7 +3391,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -3488,7 +3488,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
|
@ -191,14 +191,14 @@ stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -275,14 +275,14 @@ stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -371,14 +371,14 @@ stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -456,14 +456,14 @@ stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -553,14 +553,14 @@ stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -639,14 +639,14 @@ stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -737,14 +737,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -822,14 +822,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -907,14 +907,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -991,14 +991,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1074,14 +1074,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1158,14 +1158,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1241,14 +1241,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1324,14 +1324,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1407,14 +1407,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1490,14 +1490,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1573,14 +1573,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1656,14 +1656,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1739,14 +1739,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1822,14 +1822,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1912,7 +1912,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -1995,7 +1995,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2078,7 +2078,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2161,7 +2161,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2244,7 +2244,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2327,7 +2327,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2410,7 +2410,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2493,7 +2493,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2576,7 +2576,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2659,7 +2659,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2742,7 +2742,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2825,7 +2825,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2908,7 +2908,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -2991,7 +2991,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -233,7 +233,7 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -242,21 +242,21 @@ localhost stage/sql/checking permissions 4
|
||||
localhost stage/sql/closing tables 12
|
||||
localhost stage/sql/init 3
|
||||
localhost stage/sql/Opening tables 8
|
||||
localhost stage/sql/starting 6
|
||||
localhost stage/sql/starting 7
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -348,7 +348,7 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 0
|
||||
user2 localhost stage/sql/closing tables 0
|
||||
user2 localhost stage/sql/init 0
|
||||
@ -362,21 +362,21 @@ localhost stage/sql/checking permissions 4
|
||||
localhost stage/sql/closing tables 12
|
||||
localhost stage/sql/init 3
|
||||
localhost stage/sql/Opening tables 8
|
||||
localhost stage/sql/starting 6
|
||||
localhost stage/sql/starting 7
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -487,12 +487,12 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -501,21 +501,21 @@ localhost stage/sql/checking permissions 8
|
||||
localhost stage/sql/closing tables 23
|
||||
localhost stage/sql/init 6
|
||||
localhost stage/sql/Opening tables 15
|
||||
localhost stage/sql/starting 12
|
||||
localhost stage/sql/starting 14
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -617,12 +617,12 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 0
|
||||
user3 localhost stage/sql/closing tables 0
|
||||
user3 localhost stage/sql/init 0
|
||||
@ -636,21 +636,21 @@ localhost stage/sql/checking permissions 8
|
||||
localhost stage/sql/closing tables 23
|
||||
localhost stage/sql/init 6
|
||||
localhost stage/sql/Opening tables 15
|
||||
localhost stage/sql/starting 12
|
||||
localhost stage/sql/starting 14
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -771,17 +771,17 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -790,21 +790,21 @@ localhost stage/sql/checking permissions 12
|
||||
localhost stage/sql/closing tables 34
|
||||
localhost stage/sql/init 9
|
||||
localhost stage/sql/Opening tables 22
|
||||
localhost stage/sql/starting 18
|
||||
localhost stage/sql/starting 21
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -916,17 +916,17 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 0
|
||||
user4 localhost stage/sql/closing tables 0
|
||||
user4 localhost stage/sql/init 0
|
||||
@ -940,21 +940,21 @@ localhost stage/sql/checking permissions 12
|
||||
localhost stage/sql/closing tables 34
|
||||
localhost stage/sql/init 9
|
||||
localhost stage/sql/Opening tables 22
|
||||
localhost stage/sql/starting 18
|
||||
localhost stage/sql/starting 21
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1085,22 +1085,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1109,21 +1109,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 24
|
||||
localhost stage/sql/starting 28
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1241,22 +1241,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1265,21 +1265,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 25
|
||||
localhost stage/sql/starting 29
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1397,22 +1397,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1421,21 +1421,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 26
|
||||
localhost stage/sql/starting 30
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1552,22 +1552,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1576,21 +1576,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 27
|
||||
localhost stage/sql/starting 31
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1706,22 +1706,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1730,21 +1730,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1861,22 +1861,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1885,21 +1885,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2015,22 +2015,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2039,21 +2039,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2169,22 +2169,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2193,21 +2193,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2323,22 +2323,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2347,21 +2347,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2477,22 +2477,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2501,21 +2501,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2631,22 +2631,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2655,21 +2655,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2809,21 +2809,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2963,21 +2963,21 @@ localhost stage/sql/checking permissions 16
|
||||
localhost stage/sql/closing tables 45
|
||||
localhost stage/sql/init 12
|
||||
localhost stage/sql/Opening tables 29
|
||||
localhost stage/sql/starting 28
|
||||
localhost stage/sql/starting 32
|
||||
execute dump_stages_global;
|
||||
event_name count_star
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3124,14 +3124,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3285,7 +3285,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3439,7 +3439,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3593,7 +3593,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3747,7 +3747,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3901,7 +3901,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4055,7 +4055,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4209,7 +4209,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4363,7 +4363,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4517,7 +4517,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4671,7 +4671,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4825,7 +4825,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4951,7 +4951,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -5049,7 +5049,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -5147,7 +5147,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
|
@ -203,7 +203,7 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -214,14 +214,14 @@ stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -304,7 +304,7 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 0
|
||||
user2 localhost stage/sql/closing tables 0
|
||||
user2 localhost stage/sql/init 0
|
||||
@ -320,14 +320,14 @@ stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 4
|
||||
stage/sql/closing tables 12
|
||||
stage/sql/init 3
|
||||
stage/sql/Opening tables 8
|
||||
stage/sql/starting 6
|
||||
stage/sql/starting 7
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -429,12 +429,12 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -445,14 +445,14 @@ stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -545,12 +545,12 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 0
|
||||
user3 localhost stage/sql/closing tables 0
|
||||
user3 localhost stage/sql/init 0
|
||||
@ -566,14 +566,14 @@ stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 8
|
||||
stage/sql/closing tables 23
|
||||
stage/sql/init 6
|
||||
stage/sql/Opening tables 15
|
||||
stage/sql/starting 12
|
||||
stage/sql/starting 14
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -685,17 +685,17 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -706,14 +706,14 @@ stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -816,17 +816,17 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 0
|
||||
user4 localhost stage/sql/closing tables 0
|
||||
user4 localhost stage/sql/init 0
|
||||
@ -842,14 +842,14 @@ stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 12
|
||||
stage/sql/closing tables 34
|
||||
stage/sql/init 9
|
||||
stage/sql/Opening tables 22
|
||||
stage/sql/starting 18
|
||||
stage/sql/starting 21
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -971,22 +971,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 6
|
||||
user1 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -997,14 +997,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 24
|
||||
stage/sql/starting 28
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1113,22 +1113,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 6
|
||||
user2 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1139,14 +1139,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 25
|
||||
stage/sql/starting 29
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1255,22 +1255,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 6
|
||||
user3 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1281,14 +1281,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 26
|
||||
stage/sql/starting 30
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1396,22 +1396,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 6
|
||||
user4 localhost stage/sql/starting 7
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1422,14 +1422,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 27
|
||||
stage/sql/starting 31
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1536,22 +1536,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1562,14 +1562,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1677,22 +1677,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1703,14 +1703,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1817,22 +1817,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1843,14 +1843,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -1957,22 +1957,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -1983,14 +1983,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2097,22 +2097,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2123,14 +2123,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2237,22 +2237,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2263,14 +2263,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2377,22 +2377,22 @@ user1 localhost stage/sql/checking permissions 4
|
||||
user1 localhost stage/sql/closing tables 12
|
||||
user1 localhost stage/sql/init 3
|
||||
user1 localhost stage/sql/Opening tables 8
|
||||
user1 localhost stage/sql/starting 7
|
||||
user1 localhost stage/sql/starting 8
|
||||
user2 localhost stage/sql/checking permissions 4
|
||||
user2 localhost stage/sql/closing tables 11
|
||||
user2 localhost stage/sql/init 3
|
||||
user2 localhost stage/sql/Opening tables 7
|
||||
user2 localhost stage/sql/starting 7
|
||||
user2 localhost stage/sql/starting 8
|
||||
user3 localhost stage/sql/checking permissions 4
|
||||
user3 localhost stage/sql/closing tables 11
|
||||
user3 localhost stage/sql/init 3
|
||||
user3 localhost stage/sql/Opening tables 7
|
||||
user3 localhost stage/sql/starting 7
|
||||
user3 localhost stage/sql/starting 8
|
||||
user4 localhost stage/sql/checking permissions 4
|
||||
user4 localhost stage/sql/closing tables 11
|
||||
user4 localhost stage/sql/init 3
|
||||
user4 localhost stage/sql/Opening tables 7
|
||||
user4 localhost stage/sql/starting 7
|
||||
user4 localhost stage/sql/starting 8
|
||||
execute dump_stages_user;
|
||||
user event_name count_star
|
||||
execute dump_stages_host;
|
||||
@ -2403,14 +2403,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2543,14 +2543,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2683,14 +2683,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2823,14 +2823,14 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_stages_history;
|
||||
event_name count(event_name)
|
||||
stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -2970,7 +2970,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3110,7 +3110,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3250,7 +3250,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3390,7 +3390,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3530,7 +3530,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3670,7 +3670,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3810,7 +3810,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -3950,7 +3950,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4090,7 +4090,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4230,7 +4230,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4370,7 +4370,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
user1 localhost statement/com/Error 0
|
||||
@ -4482,7 +4482,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4566,7 +4566,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
@ -4650,7 +4650,7 @@ stage/sql/checking permissions 16
|
||||
stage/sql/closing tables 45
|
||||
stage/sql/init 12
|
||||
stage/sql/Opening tables 29
|
||||
stage/sql/starting 28
|
||||
stage/sql/starting 32
|
||||
execute dump_statements_account;
|
||||
user host event_name count_star
|
||||
execute dump_statements_user;
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -2507,8 +2507,8 @@ execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
localhost 6 6
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -2507,8 +2507,8 @@ execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
localhost 6 6
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -1903,8 +1903,8 @@ execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
localhost 6 6
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -1653,8 +1653,8 @@ user4 2 2
|
||||
execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -1343,8 +1343,8 @@ execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
localhost 6 6
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -1093,8 +1093,8 @@ USER CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -2257,8 +2257,8 @@ user4 2 2
|
||||
execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -1947,8 +1947,8 @@ execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
localhost 6 6
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -1697,8 +1697,8 @@ USER CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
execute dump_hosts;
|
||||
HOST CURRENT_CONNECTIONS TOTAL_CONNECTIONS
|
||||
disconnect con1;
|
||||
disconnect con5;
|
||||
connection default;
|
||||
disconnect con5;
|
||||
"================== con1/con5 disconnected =================="
|
||||
"================== Step 10 =================="
|
||||
call dump_thread();
|
||||
|
@ -94,7 +94,7 @@ test t_60905 NULL 5 5 0 1
|
||||
DROP TABLE t_60905;
|
||||
show global variables like "performance_schema_max_thread_instances";
|
||||
Variable_name Value
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
explain select * from performance_schema.threads;
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 SIMPLE threads ALL NULL NULL NULL NULL 256
|
||||
|
@ -127,10 +127,10 @@ relative_event_id relative_end_event_id event_name comment nesting_event_type re
|
||||
10 10 stage/sql/Optimizing (stage) STATEMENT 0
|
||||
11 11 stage/sql/Executing (stage) STATEMENT 0
|
||||
12 12 stage/sql/End of update loop (stage) STATEMENT 0
|
||||
13 13 stage/sql/Query end (stage) STATEMENT 0
|
||||
14 15 stage/sql/Commit (stage) STATEMENT 0
|
||||
15 15 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 14
|
||||
16 16 stage/sql/closing tables (stage) STATEMENT 0
|
||||
13 14 stage/sql/Query end (stage) STATEMENT 0
|
||||
14 14 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 13
|
||||
15 15 stage/sql/closing tables (stage) STATEMENT 0
|
||||
16 16 stage/sql/Query end (stage) STATEMENT 0
|
||||
17 17 stage/sql/Starting cleanup (stage) STATEMENT 0
|
||||
18 18 stage/sql/Freeing items (stage) STATEMENT 0
|
||||
19 19 wait/io/socket/sql/client_connection send STATEMENT 0
|
||||
@ -151,10 +151,10 @@ relative_event_id relative_end_event_id event_name comment nesting_event_type re
|
||||
34 34 stage/sql/Optimizing (stage) STATEMENT 24
|
||||
35 35 stage/sql/Executing (stage) STATEMENT 24
|
||||
36 36 stage/sql/End of update loop (stage) STATEMENT 24
|
||||
37 37 stage/sql/Query end (stage) STATEMENT 24
|
||||
38 39 stage/sql/Commit (stage) STATEMENT 24
|
||||
39 39 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 38
|
||||
40 40 stage/sql/closing tables (stage) STATEMENT 24
|
||||
37 38 stage/sql/Query end (stage) STATEMENT 24
|
||||
38 38 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 37
|
||||
39 39 stage/sql/closing tables (stage) STATEMENT 24
|
||||
40 40 stage/sql/Query end (stage) STATEMENT 24
|
||||
41 41 stage/sql/Starting cleanup (stage) STATEMENT 24
|
||||
42 42 stage/sql/Freeing items (stage) STATEMENT 24
|
||||
43 43 wait/io/socket/sql/client_connection send STATEMENT 24
|
||||
@ -175,10 +175,10 @@ relative_event_id relative_end_event_id event_name comment nesting_event_type re
|
||||
58 58 stage/sql/Optimizing (stage) STATEMENT 48
|
||||
59 59 stage/sql/Executing (stage) STATEMENT 48
|
||||
60 60 stage/sql/End of update loop (stage) STATEMENT 48
|
||||
61 61 stage/sql/Query end (stage) STATEMENT 48
|
||||
62 63 stage/sql/Commit (stage) STATEMENT 48
|
||||
63 63 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 62
|
||||
64 64 stage/sql/closing tables (stage) STATEMENT 48
|
||||
61 62 stage/sql/Query end (stage) STATEMENT 48
|
||||
62 62 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 61
|
||||
63 63 stage/sql/closing tables (stage) STATEMENT 48
|
||||
64 64 stage/sql/Query end (stage) STATEMENT 48
|
||||
65 65 stage/sql/Starting cleanup (stage) STATEMENT 48
|
||||
66 66 stage/sql/Freeing items (stage) STATEMENT 48
|
||||
67 67 wait/io/socket/sql/client_connection send STATEMENT 48
|
||||
@ -202,10 +202,10 @@ select "With a third part to make things complete" as payload NULL NULL
|
||||
83 83 stage/sql/Optimizing (stage) STATEMENT 72
|
||||
84 84 stage/sql/Executing (stage) STATEMENT 72
|
||||
85 85 stage/sql/End of update loop (stage) STATEMENT 72
|
||||
86 86 stage/sql/Query end (stage) STATEMENT 72
|
||||
87 88 stage/sql/Commit (stage) STATEMENT 72
|
||||
88 88 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 87
|
||||
89 89 stage/sql/closing tables (stage) STATEMENT 72
|
||||
86 87 stage/sql/Query end (stage) STATEMENT 72
|
||||
87 87 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 86
|
||||
88 88 stage/sql/closing tables (stage) STATEMENT 72
|
||||
89 89 stage/sql/Query end (stage) STATEMENT 72
|
||||
90 90 stage/sql/Starting cleanup (stage) STATEMENT 72
|
||||
91 92 stage/sql/Freeing items (stage) STATEMENT 72
|
||||
92 92 wait/io/socket/sql/client_connection send STAGE 91
|
||||
@ -221,10 +221,10 @@ select "With a third part to make things complete" as payload NULL NULL
|
||||
101 101 stage/sql/Optimizing (stage) STATEMENT 93
|
||||
102 102 stage/sql/Executing (stage) STATEMENT 93
|
||||
103 103 stage/sql/End of update loop (stage) STATEMENT 93
|
||||
104 104 stage/sql/Query end (stage) STATEMENT 93
|
||||
105 106 stage/sql/Commit (stage) STATEMENT 93
|
||||
106 106 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 105
|
||||
107 107 stage/sql/closing tables (stage) STATEMENT 93
|
||||
104 105 stage/sql/Query end (stage) STATEMENT 93
|
||||
105 105 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 104
|
||||
106 106 stage/sql/closing tables (stage) STATEMENT 93
|
||||
107 107 stage/sql/Query end (stage) STATEMENT 93
|
||||
108 108 stage/sql/Starting cleanup (stage) STATEMENT 93
|
||||
109 110 stage/sql/Freeing items (stage) STATEMENT 93
|
||||
110 110 wait/io/socket/sql/client_connection send STAGE 109
|
||||
@ -238,10 +238,10 @@ select "With a third part to make things complete" as payload NULL NULL
|
||||
118 118 stage/sql/Optimizing (stage) STATEMENT 111
|
||||
119 119 stage/sql/Executing (stage) STATEMENT 111
|
||||
120 120 stage/sql/End of update loop (stage) STATEMENT 111
|
||||
121 121 stage/sql/Query end (stage) STATEMENT 111
|
||||
122 123 stage/sql/Commit (stage) STATEMENT 111
|
||||
123 123 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 122
|
||||
124 124 stage/sql/closing tables (stage) STATEMENT 111
|
||||
121 122 stage/sql/Query end (stage) STATEMENT 111
|
||||
122 122 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 121
|
||||
123 123 stage/sql/closing tables (stage) STATEMENT 111
|
||||
124 124 stage/sql/Query end (stage) STATEMENT 111
|
||||
125 125 stage/sql/Starting cleanup (stage) STATEMENT 111
|
||||
126 126 stage/sql/Freeing items (stage) STATEMENT 111
|
||||
127 127 wait/io/socket/sql/client_connection send STATEMENT 111
|
||||
@ -262,10 +262,10 @@ select "With a third part to make things complete" as payload NULL NULL
|
||||
142 142 stage/sql/Optimizing (stage) STATEMENT 132
|
||||
143 143 stage/sql/Executing (stage) STATEMENT 132
|
||||
144 144 stage/sql/End of update loop (stage) STATEMENT 132
|
||||
145 145 stage/sql/Query end (stage) STATEMENT 132
|
||||
146 147 stage/sql/Commit (stage) STATEMENT 132
|
||||
147 147 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 146
|
||||
148 148 stage/sql/closing tables (stage) STATEMENT 132
|
||||
145 146 stage/sql/Query end (stage) STATEMENT 132
|
||||
146 146 wait/synch/mutex/sql/THD::LOCK_thd_kill lock STAGE 145
|
||||
147 147 stage/sql/closing tables (stage) STATEMENT 132
|
||||
148 148 stage/sql/Query end (stage) STATEMENT 132
|
||||
149 149 stage/sql/Starting cleanup (stage) STATEMENT 132
|
||||
150 150 stage/sql/Freeing items (stage) STATEMENT 132
|
||||
151 151 wait/io/socket/sql/client_connection send STATEMENT 132
|
||||
|
@ -233,7 +233,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -257,7 +257,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -39,7 +39,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -63,7 +63,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -10,10 +10,10 @@ username event_name nesting_event_type
|
||||
username event_name nesting_event_type
|
||||
user1 stage/sql/starting STATEMENT
|
||||
user1 stage/sql/starting STATEMENT
|
||||
user1 stage/sql/starting STATEMENT
|
||||
user1 stage/sql/Query end STATEMENT
|
||||
user1 stage/sql/Commit STATEMENT
|
||||
user1 stage/sql/closing tables STATEMENT
|
||||
user1 stage/sql/Commit implicit STATEMENT
|
||||
user1 stage/sql/Query end STATEMENT
|
||||
user1 stage/sql/Starting cleanup STATEMENT
|
||||
user1 stage/sql/Freeing items STATEMENT
|
||||
user1 stage/sql/Reset for next command STATEMENT
|
||||
|
@ -19,10 +19,10 @@ username event_name nesting_event_type
|
||||
user1 stage/sql/Sending data STATEMENT
|
||||
user1 stage/sql/End of update loop STATEMENT
|
||||
user1 stage/sql/Query end STATEMENT
|
||||
user1 stage/sql/Commit STATEMENT
|
||||
user1 stage/sql/closing tables STATEMENT
|
||||
user1 stage/sql/Unlocking tables STATEMENT
|
||||
user1 stage/sql/closing tables STATEMENT
|
||||
user1 stage/sql/Query end STATEMENT
|
||||
user1 stage/sql/Starting cleanup STATEMENT
|
||||
user1 stage/sql/Freeing items STATEMENT
|
||||
user1 stage/sql/Reset for next command STATEMENT
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 1
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 0
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 0
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 0
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 0
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 0
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 0
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 0
|
||||
performance_schema_max_table_lock_stat 0
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 0
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 0
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 0
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 0
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
@ -165,7 +165,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -188,7 +188,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -117,7 +117,7 @@ performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_cond_instances 1500
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 80
|
||||
performance_schema_max_file_handles 32768
|
||||
@ -141,7 +141,7 @@ performance_schema_max_table_handles 1000
|
||||
performance_schema_max_table_instances 500
|
||||
performance_schema_max_table_lock_stat 500
|
||||
performance_schema_max_thread_classes 50
|
||||
performance_schema_max_thread_instances 200
|
||||
performance_schema_max_thread_instances 400
|
||||
performance_schema_session_connect_attrs_size 2048
|
||||
performance_schema_setup_actors_size 100
|
||||
performance_schema_setup_objects_size 100
|
||||
|
@ -145,7 +145,7 @@ Bollywood
|
||||
# Event
|
||||
SET GLOBAL event_scheduler=ON;
|
||||
CREATE TABLE table_t(a INT);
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND DO
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND ON COMPLETION NOT PRESERVE DO
|
||||
BEGIN
|
||||
INSERT INTO table_t VALUES(1);
|
||||
END|
|
||||
@ -165,7 +165,7 @@ statement/sql/call_procedure CALL SampleProc1(30,40,50) NULL NULL 0
|
||||
statement/sql/call_procedure CALL SampleProc2("Jwalamukhi",34) NULL NULL 0
|
||||
statement/sql/call_procedure CALL SampleProc3() NULL NULL 0
|
||||
statement/sql/call_procedure CALL SampleProc4() NULL NULL 0
|
||||
statement/sql/create_event CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND DO
|
||||
statement/sql/create_event CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND ON COMPLETION NOT PRESERVE DO
|
||||
BEGIN
|
||||
INSERT INTO table_t VALUES(1);
|
||||
END NULL NULL 0
|
||||
|
@ -145,7 +145,7 @@ Bollywood
|
||||
# Event
|
||||
SET GLOBAL event_scheduler=ON;
|
||||
CREATE TABLE table_t(a INT);
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND DO
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND ON COMPLETION NOT PRESERVE DO
|
||||
BEGIN
|
||||
INSERT INTO table_t VALUES(1);
|
||||
END|
|
||||
@ -182,7 +182,7 @@ statement/sql/call_procedure CALL SampleProc1(30,40,50) stored_programs NULL NUL
|
||||
statement/sql/call_procedure CALL SampleProc2("Jwalamukhi",34) stored_programs NULL NULL NULL NULL 0
|
||||
statement/sql/call_procedure CALL SampleProc3() stored_programs NULL NULL NULL NULL 0
|
||||
statement/sql/call_procedure CALL SampleProc4() stored_programs NULL NULL NULL NULL 0
|
||||
statement/sql/create_event CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND DO
|
||||
statement/sql/create_event CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND ON COMPLETION NOT PRESERVE DO
|
||||
BEGIN
|
||||
INSERT INTO table_t VALUES(1);
|
||||
END stored_programs NULL NULL NULL NULL 0
|
||||
@ -553,7 +553,7 @@ Bollywood
|
||||
# Event
|
||||
SET GLOBAL event_scheduler=ON;
|
||||
CREATE TABLE table_t(a INT);
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND DO
|
||||
CREATE EVENT e1 ON SCHEDULE EVERY 2 SECOND ON COMPLETION NOT PRESERVE DO
|
||||
BEGIN
|
||||
INSERT INTO table_t VALUES(1);
|
||||
END|
|
||||
|
@ -24,27 +24,22 @@ events_waits_history_long YES
|
||||
global_instrumentation YES
|
||||
thread_instrumentation YES
|
||||
statements_digest YES
|
||||
# Switch to (con1, localhost, user1, , )
|
||||
connect con1, localhost, user1, , ;
|
||||
update performance_schema.threads
|
||||
set INSTRUMENTED='YES', HISTORY='YES'
|
||||
where PROCESSLIST_ID = connection_id();
|
||||
# Switch to (con2, localhost, user2, , )
|
||||
connect con2, localhost, user2, , ;
|
||||
update performance_schema.threads
|
||||
set INSTRUMENTED='YES', HISTORY='NO'
|
||||
where PROCESSLIST_ID = connection_id();
|
||||
# Switch to (con3, localhost, user3, , )
|
||||
connect con3, localhost, user3, , ;
|
||||
update performance_schema.threads
|
||||
set INSTRUMENTED='NO', HISTORY='YES'
|
||||
where PROCESSLIST_ID = connection_id();
|
||||
# Switch to (con4, localhost, user4, , )
|
||||
connect con4, localhost, user4, , ;
|
||||
update performance_schema.threads
|
||||
set INSTRUMENTED='NO', HISTORY='NO'
|
||||
where PROCESSLIST_ID = connection_id();
|
||||
# Switch to connection default
|
||||
connection default;
|
||||
truncate table performance_schema.events_transactions_current;
|
||||
truncate table performance_schema.events_transactions_history;
|
||||
@ -58,7 +53,6 @@ truncate table performance_schema.events_stages_history_long;
|
||||
truncate table performance_schema.events_waits_current;
|
||||
truncate table performance_schema.events_waits_history;
|
||||
truncate table performance_schema.events_waits_history_long;
|
||||
# Switch to connection con1
|
||||
connection con1;
|
||||
XA START 'XA_CON1', 'XA_BQUAL', 12;
|
||||
select "Hi from con1";
|
||||
@ -67,7 +61,6 @@ Hi from con1
|
||||
XA END 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON1', 'XA_BQUAL', 12;
|
||||
# Switch to connection con2
|
||||
connection con2;
|
||||
XA START 'XA_CON2', 'XA_BQUAL', 12;
|
||||
select "Hi from con2";
|
||||
@ -76,7 +69,6 @@ Hi from con2
|
||||
XA END 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON2', 'XA_BQUAL', 12;
|
||||
# Switch to connection con3
|
||||
connection con3;
|
||||
XA START 'XA_CON3', 'XA_BQUAL', 12;
|
||||
select "Hi from con3";
|
||||
@ -85,7 +77,6 @@ Hi from con3
|
||||
XA END 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON3', 'XA_BQUAL', 12;
|
||||
# Switch to connection con4
|
||||
connection con4;
|
||||
XA START 'XA_CON4', 'XA_BQUAL', 12;
|
||||
select "Hi from con4";
|
||||
@ -95,88 +86,142 @@ XA END 'XA_CON4', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON4', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON4', 'XA_BQUAL', 12;
|
||||
connection default;
|
||||
"=========================== Transactions user 1"
|
||||
########################### Transactions user 1 - 1
|
||||
select /*1-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON1 XA_BQUAL
|
||||
select /*1-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON1 XA_BQUAL
|
||||
select /*1-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON1 XA_BQUAL
|
||||
"=========================== Transactions user 2"
|
||||
########################### Transactions user 2 - 1
|
||||
select /*2-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON2 XA_BQUAL
|
||||
select /*2-1*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-1*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Transactions user 3"
|
||||
########################### Transactions user 3 - 1
|
||||
select /*3-1*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Transactions user 4"
|
||||
########################### Transactions user 4 - 1
|
||||
select /*4-1*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 1"
|
||||
########################### Statements user 1 - 1
|
||||
select /*1-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON1', 'XA_BQUAL', 12
|
||||
select /*1-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_start XA START 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/select select "Hi from con1"
|
||||
statement/sql/xa_end XA END 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_prepare XA PREPARE 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON1', 'XA_BQUAL', 12
|
||||
select /*1-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_start XA START 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/select select "Hi from con1"
|
||||
statement/sql/xa_end XA END 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_prepare XA PREPARE 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON1', 'XA_BQUAL', 12
|
||||
"=========================== Statements user 2"
|
||||
########################### Statements user 2 - 1
|
||||
select /*2-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON2', 'XA_BQUAL', 12
|
||||
select /*2-1*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-1*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 3"
|
||||
########################### Statements user 3 - 1
|
||||
select /*3-1*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 4"
|
||||
########################### Statements user 4 - 1
|
||||
select /*4-1*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 1"
|
||||
########################### Stages user 1 - 1
|
||||
select /*1-1*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
select /*1-1*/ EVENT_NAME from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
select /*1-1*/ EVENT_NAME from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
@ -189,81 +234,122 @@ stage/sql/Optimizing
|
||||
stage/sql/Executing
|
||||
stage/sql/End of update loop
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
"=========================== Stages user 2"
|
||||
########################### Stages user 2 - 1
|
||||
select /*2-1*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
select /*2-1*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-1*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 3"
|
||||
########################### Stages user 3 - 1
|
||||
select /*3-1*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 4"
|
||||
########################### Stages user 4 - 1
|
||||
select /*4-1*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 1"
|
||||
########################### Waits user 1 - 1
|
||||
select /*1-1*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
idle
|
||||
select /*1-1*/ (count(*) > 5) as has_waits from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
has_waits
|
||||
1
|
||||
select /*1-1*/ (count(*) > 15) as has_waits from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
has_waits
|
||||
1
|
||||
"=========================== Waits user 2"
|
||||
########################### Waits user 2 - 1
|
||||
select /*2-1*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
idle
|
||||
select /*2-1*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-1*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 3"
|
||||
########################### Waits user 3 - 1
|
||||
select /*3-1*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-1*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 4"
|
||||
########################### Waits user 4 - 1
|
||||
select /*4-1*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-1*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
# Switch to connection default, disable consumers
|
||||
connection default;
|
||||
update performance_schema.setup_consumers
|
||||
set enabled='NO' where name like "%history%";
|
||||
@ -296,7 +382,6 @@ truncate table performance_schema.events_stages_history_long;
|
||||
truncate table performance_schema.events_waits_current;
|
||||
truncate table performance_schema.events_waits_history;
|
||||
truncate table performance_schema.events_waits_history_long;
|
||||
# Switch to connection con1
|
||||
connection con1;
|
||||
XA START 'XA_CON1', 'XA_BQUAL', 12;
|
||||
select "Hi from con1";
|
||||
@ -305,7 +390,6 @@ Hi from con1
|
||||
XA END 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON1', 'XA_BQUAL', 12;
|
||||
# Switch to connection con2
|
||||
connection con2;
|
||||
XA START 'XA_CON2', 'XA_BQUAL', 12;
|
||||
select "Hi from con2";
|
||||
@ -314,7 +398,6 @@ Hi from con2
|
||||
XA END 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON2', 'XA_BQUAL', 12;
|
||||
# Switch to connection con3
|
||||
connection con3;
|
||||
XA START 'XA_CON3', 'XA_BQUAL', 12;
|
||||
select "Hi from con3";
|
||||
@ -323,7 +406,6 @@ Hi from con3
|
||||
XA END 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON3', 'XA_BQUAL', 12;
|
||||
# Switch to connection con4
|
||||
connection con4;
|
||||
XA START 'XA_CON4', 'XA_BQUAL', 12;
|
||||
select "Hi from con4";
|
||||
@ -333,117 +415,212 @@ XA END 'XA_CON4', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON4', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON4', 'XA_BQUAL', 12;
|
||||
connection default;
|
||||
"=========================== Transactions user 1"
|
||||
########################### Transactions user 1 - 2
|
||||
select /*1-2*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON1 XA_BQUAL
|
||||
select /*1-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*1-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Transactions user 2"
|
||||
########################### Transactions user 2 - 2
|
||||
select /*2-2*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON2 XA_BQUAL
|
||||
select /*2-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Transactions user 3"
|
||||
########################### Transactions user 3 - 2
|
||||
select /*3-2*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Transactions user 4"
|
||||
########################### Transactions user 4 - 2
|
||||
select /*4-2*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 1"
|
||||
########################### Statements user 1 - 2
|
||||
select /*1-2*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON1', 'XA_BQUAL', 12
|
||||
select /*1-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*1-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 2"
|
||||
########################### Statements user 2 - 2
|
||||
select /*2-2*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON2', 'XA_BQUAL', 12
|
||||
select /*2-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 3"
|
||||
########################### Statements user 3 - 2
|
||||
select /*3-2*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 4"
|
||||
########################### Statements user 4 - 2
|
||||
select /*4-2*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 1"
|
||||
########################### Stages user 1 - 2
|
||||
select /*1-2*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
select /*1-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*1-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 2"
|
||||
########################### Stages user 2 - 2
|
||||
select /*2-2*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
select /*2-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 3"
|
||||
########################### Stages user 3 - 2
|
||||
select /*3-2*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 4"
|
||||
########################### Stages user 4 - 2
|
||||
select /*4-2*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 1"
|
||||
########################### Waits user 1 - 2
|
||||
select /*1-2*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
idle
|
||||
select /*1-2*/ count(*) as has_waits from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
has_waits
|
||||
0
|
||||
select /*1-2*/ count(*) as has_waits from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
has_waits
|
||||
0
|
||||
"=========================== Waits user 2"
|
||||
########################### Waits user 2 - 2
|
||||
select /*2-2*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
idle
|
||||
select /*2-2*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-2*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 3"
|
||||
########################### Waits user 3 - 2
|
||||
select /*3-2*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-2*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 4"
|
||||
########################### Waits user 4 - 2
|
||||
select /*4-2*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-2*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
# Switch to connection default, enable consumers
|
||||
connection default;
|
||||
update performance_schema.setup_consumers
|
||||
set enabled='YES' where name like "%history%";
|
||||
@ -476,7 +653,6 @@ truncate table performance_schema.events_stages_history_long;
|
||||
truncate table performance_schema.events_waits_current;
|
||||
truncate table performance_schema.events_waits_history;
|
||||
truncate table performance_schema.events_waits_history_long;
|
||||
# Switch to connection con1
|
||||
connection con1;
|
||||
XA START 'XA_CON1', 'XA_BQUAL', 12;
|
||||
select "Hi from con1";
|
||||
@ -485,7 +661,6 @@ Hi from con1
|
||||
XA END 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON1', 'XA_BQUAL', 12;
|
||||
# Switch to connection con2
|
||||
connection con2;
|
||||
XA START 'XA_CON2', 'XA_BQUAL', 12;
|
||||
select "Hi from con2";
|
||||
@ -494,7 +669,6 @@ Hi from con2
|
||||
XA END 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON2', 'XA_BQUAL', 12;
|
||||
# Switch to connection con3
|
||||
connection con3;
|
||||
XA START 'XA_CON3', 'XA_BQUAL', 12;
|
||||
select "Hi from con3";
|
||||
@ -503,7 +677,6 @@ Hi from con3
|
||||
XA END 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON3', 'XA_BQUAL', 12;
|
||||
# Switch to connection con4
|
||||
connection con4;
|
||||
XA START 'XA_CON4', 'XA_BQUAL', 12;
|
||||
select "Hi from con4";
|
||||
@ -513,88 +686,142 @@ XA END 'XA_CON4', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON4', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON4', 'XA_BQUAL', 12;
|
||||
connection default;
|
||||
"=========================== Transactions user 1"
|
||||
########################### Transactions user 1 - 3
|
||||
select /*1-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON1 XA_BQUAL
|
||||
select /*1-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON1 XA_BQUAL
|
||||
select /*1-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON1 XA_BQUAL
|
||||
"=========================== Transactions user 2"
|
||||
########################### Transactions user 2 - 3
|
||||
select /*2-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
XID_FORMAT_ID XID_GTRID XID_BQUAL
|
||||
12 XA_CON2 XA_BQUAL
|
||||
select /*2-3*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-3*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Transactions user 3"
|
||||
########################### Transactions user 3 - 3
|
||||
select /*3-3*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Transactions user 4"
|
||||
########################### Transactions user 4 - 3
|
||||
select /*4-3*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 1"
|
||||
########################### Statements user 1 - 3
|
||||
select /*1-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON1', 'XA_BQUAL', 12
|
||||
select /*1-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_start XA START 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/select select "Hi from con1"
|
||||
statement/sql/xa_end XA END 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_prepare XA PREPARE 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON1', 'XA_BQUAL', 12
|
||||
select /*1-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_start XA START 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/select select "Hi from con1"
|
||||
statement/sql/xa_end XA END 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_prepare XA PREPARE 'XA_CON1', 'XA_BQUAL', 12
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON1', 'XA_BQUAL', 12
|
||||
"=========================== Statements user 2"
|
||||
########################### Statements user 2 - 3
|
||||
select /*2-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME SQL_TEXT
|
||||
statement/sql/xa_commit XA COMMIT 'XA_CON2', 'XA_BQUAL', 12
|
||||
select /*2-3*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-3*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 3"
|
||||
########################### Statements user 3 - 3
|
||||
select /*3-3*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Statements user 4"
|
||||
########################### Statements user 4 - 3
|
||||
select /*4-3*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 1"
|
||||
########################### Stages user 1 - 3
|
||||
select /*1-3*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
select /*1-3*/ EVENT_NAME from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
select /*1-3*/ EVENT_NAME from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
@ -607,81 +834,122 @@ stage/sql/Optimizing
|
||||
stage/sql/Executing
|
||||
stage/sql/End of update loop
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
stage/sql/starting
|
||||
stage/sql/Query end
|
||||
stage/sql/Commit
|
||||
stage/sql/closing tables
|
||||
stage/sql/Query end
|
||||
stage/sql/Starting cleanup
|
||||
stage/sql/Freeing items
|
||||
stage/sql/Reset for next command
|
||||
"=========================== Stages user 2"
|
||||
########################### Stages user 2 - 3
|
||||
select /*2-3*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
select /*2-3*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-3*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 3"
|
||||
########################### Stages user 3 - 3
|
||||
select /*3-3*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Stages user 4"
|
||||
########################### Stages user 4 - 3
|
||||
select /*4-3*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 1"
|
||||
########################### Waits user 1 - 3
|
||||
select /*1-3*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
idle
|
||||
select /*1-3*/ (count(*) > 5) as has_waits from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
has_waits
|
||||
1
|
||||
select /*1-3*/ (count(*) > 15) as has_waits from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
has_waits
|
||||
1
|
||||
"=========================== Waits user 2"
|
||||
########################### Waits user 2 - 3
|
||||
select /*2-3*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
EVENT_NAME
|
||||
idle
|
||||
select /*2-3*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*2-3*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 3"
|
||||
########################### Waits user 3 - 3
|
||||
select /*3-3*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*3-3*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
count(*)
|
||||
0
|
||||
"=========================== Waits user 4"
|
||||
########################### Waits user 4 - 3
|
||||
select /*4-3*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
select /*4-3*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
count(*)
|
||||
0
|
||||
# Switch to connection default
|
||||
connection default;
|
||||
revoke all privileges, grant option from user1@localhost;
|
||||
revoke all privileges, grant option from user2@localhost;
|
||||
|
@ -14,7 +14,7 @@ let $error_log= $MYSQLTEST_VARDIR/log/my_restart.err;
|
||||
let SEARCH_FILE= $error_log;
|
||||
# Stop the server
|
||||
let $restart_file= $MYSQLTEST_VARDIR/tmp/mysqld.1.expect;
|
||||
--exec echo "wait" > $restart_file
|
||||
--write_line wait $restart_file
|
||||
--shutdown_server
|
||||
--source include/wait_until_disconnected.inc
|
||||
--error 7
|
||||
@ -62,7 +62,7 @@ let SEARCH_PATTERN= Can.t change dir to .*bad_option_h_param;
|
||||
|
||||
--remove_file $error_log
|
||||
# Write file to make mysql-test-run.pl start up the server again
|
||||
--exec echo "restart" > $restart_file
|
||||
--write_line restart $restart_file
|
||||
|
||||
# Turn on reconnect
|
||||
--enable_reconnect
|
||||
|
@ -175,6 +175,7 @@ DROP TABLE t_60905;
|
||||
#
|
||||
|
||||
show global variables like "performance_schema_max_thread_instances";
|
||||
replace_result 512 256;
|
||||
explain select * from performance_schema.threads;
|
||||
|
||||
#
|
||||
|
@ -23,7 +23,7 @@ DROP TABLE performance_schema.processlist;
|
||||
SHOW CREATE TABLE performance_schema.processlist;
|
||||
|
||||
let $restart_file= $MYSQLTEST_VARDIR/tmp/mysqld.1.expect;
|
||||
--exec echo "wait" > $restart_file
|
||||
--write_line wait $restart_file
|
||||
--echo ##
|
||||
--echo ## Server shutdown
|
||||
--echo ##
|
||||
@ -93,7 +93,7 @@ SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||
--error ER_BAD_FIELD_ERROR
|
||||
SHOW PROCESSLIST;
|
||||
|
||||
--exec echo "wait" > $restart_file
|
||||
--write_line wait $restart_file
|
||||
--echo ##
|
||||
--echo ## Server shutdown
|
||||
--echo ##
|
||||
@ -166,7 +166,7 @@ SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||
# Works and returns no data, innodb table is empty.
|
||||
SHOW PROCESSLIST;
|
||||
|
||||
--exec echo "wait" > $restart_file
|
||||
--write_line wait $restart_file
|
||||
--echo ##
|
||||
--echo ## Server shutdown
|
||||
--echo ##
|
||||
@ -231,7 +231,7 @@ SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||
# Works and returns no data, innodb table is empty.
|
||||
SHOW PROCESSLIST;
|
||||
|
||||
--exec echo "wait" > $restart_file
|
||||
--write_line wait $restart_file
|
||||
--echo ##
|
||||
--echo ## Server shutdown
|
||||
--echo ##
|
||||
@ -306,7 +306,7 @@ SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||
--replace_column 3 [HOST:PORT] 6 [TIME]
|
||||
SHOW PROCESSLIST;
|
||||
|
||||
--exec echo "wait" > $restart_file
|
||||
--write_line wait $restart_file
|
||||
--echo ##
|
||||
--echo ## Server shutdown
|
||||
--echo ##
|
||||
|
@ -69,7 +69,7 @@ SELECT * FROM performance_schema.setup_instruments
|
||||
WHERE name like "%wait/io/table/sql/handler%";
|
||||
|
||||
# Write file to make mysql-test-run.pl wait for the server to stop
|
||||
--exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
|
||||
--write_line wait $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
|
||||
|
||||
# Restart the server
|
||||
--echo #
|
||||
@ -79,7 +79,7 @@ WHERE name like "%wait/io/table/sql/handler%";
|
||||
|
||||
--echo # Restart server with wait/io/table/sql/handler disabled
|
||||
|
||||
--exec echo "restart:--loose-performance-schema-instrument=%wait/io/table/sql/%=off" > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
|
||||
--write_line "restart:--loose-performance-schema-instrument=%wait/io/table/sql/%=off" $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
|
||||
|
||||
# Turn on reconnect
|
||||
--echo # Enable reconnect
|
||||
|
@ -19,10 +19,10 @@
|
||||
--source include/have_perfschema.inc
|
||||
|
||||
let $restart_file= $MYSQLTEST_VARDIR/tmp/mysqld.1.expect;
|
||||
--exec echo "wait" > $restart_file
|
||||
--write_line wait $restart_file
|
||||
--shutdown_server
|
||||
--source include/wait_until_disconnected.inc
|
||||
--exec echo "restart:--performance_schema_max_program_instances=7 --performance_schema_max_statement_stack=2 --thread_stack=655360">$restart_file
|
||||
--write_line "restart:--performance_schema_max_program_instances=7 --performance_schema_max_statement_stack=2 --thread_stack=655360" $restart_file
|
||||
--enable_reconnect
|
||||
--source include/wait_until_connected_again.inc
|
||||
|
||||
|
@ -23,7 +23,6 @@ flush privileges;
|
||||
|
||||
select * from performance_schema.setup_consumers;
|
||||
|
||||
--echo # Switch to (con1, localhost, user1, , )
|
||||
connect (con1, localhost, user1, , );
|
||||
|
||||
update performance_schema.threads
|
||||
@ -33,7 +32,6 @@ update performance_schema.threads
|
||||
let $con1_thread_id= `select THREAD_ID from performance_schema.threads
|
||||
where PROCESSLIST_ID = connection_id()`;
|
||||
|
||||
--echo # Switch to (con2, localhost, user2, , )
|
||||
connect (con2, localhost, user2, , );
|
||||
|
||||
update performance_schema.threads
|
||||
@ -43,7 +41,6 @@ update performance_schema.threads
|
||||
let $con2_thread_id= `select THREAD_ID from performance_schema.threads
|
||||
where PROCESSLIST_ID = connection_id()`;
|
||||
|
||||
--echo # Switch to (con3, localhost, user3, , )
|
||||
connect (con3, localhost, user3, , );
|
||||
|
||||
update performance_schema.threads
|
||||
@ -53,7 +50,6 @@ update performance_schema.threads
|
||||
let $con3_thread_id= `select THREAD_ID from performance_schema.threads
|
||||
where PROCESSLIST_ID = connection_id()`;
|
||||
|
||||
--echo # Switch to (con4, localhost, user4, , )
|
||||
connect (con4, localhost, user4, , );
|
||||
|
||||
update performance_schema.threads
|
||||
@ -63,7 +59,6 @@ update performance_schema.threads
|
||||
let $con4_thread_id= `select THREAD_ID from performance_schema.threads
|
||||
where PROCESSLIST_ID = connection_id()`;
|
||||
|
||||
--echo # Switch to connection default
|
||||
--connection default
|
||||
|
||||
truncate table performance_schema.events_transactions_current;
|
||||
@ -79,7 +74,6 @@ truncate table performance_schema.events_waits_current;
|
||||
truncate table performance_schema.events_waits_history;
|
||||
truncate table performance_schema.events_waits_history_long;
|
||||
|
||||
--echo # Switch to connection con1
|
||||
--connection con1
|
||||
|
||||
XA START 'XA_CON1', 'XA_BQUAL', 12;
|
||||
@ -88,7 +82,6 @@ XA END 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON1', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con2
|
||||
--connection con2
|
||||
|
||||
XA START 'XA_CON2', 'XA_BQUAL', 12;
|
||||
@ -97,7 +90,6 @@ XA END 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON2', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con3
|
||||
--connection con3
|
||||
|
||||
XA START 'XA_CON3', 'XA_BQUAL', 12;
|
||||
@ -106,7 +98,6 @@ XA END 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON3', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con4
|
||||
--connection con4
|
||||
|
||||
XA START 'XA_CON4', 'XA_BQUAL', 12;
|
||||
@ -117,165 +108,150 @@ XA COMMIT 'XA_CON4', 'XA_BQUAL', 12;
|
||||
|
||||
--connection default
|
||||
|
||||
--disable_query_log
|
||||
echo ########################### Transactions user 1 - 1;
|
||||
|
||||
echo "=========================== Transactions user 1";
|
||||
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
evalp select /*1-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history
|
||||
evalp select /*1-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history_long
|
||||
evalp select /*1-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 2";
|
||||
echo ########################### Transactions user 2 - 1;
|
||||
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
evalp select /*2-1*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 3";
|
||||
echo ########################### Transactions user 3 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_transactions_current
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 4";
|
||||
echo ########################### Transactions user 4 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_transactions_current
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Statements user 1";
|
||||
echo ########################### Statements user 1 - 1;
|
||||
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
|
||||
echo "=========================== Statements user 2";
|
||||
echo ########################### Statements user 2 - 1;
|
||||
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*2-1*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Statements user 3";
|
||||
echo ########################### Statements user 3 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_statements_current
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Statements user 4";
|
||||
echo ########################### Statements user 4 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_statements_current
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Stages user 1";
|
||||
echo ########################### Stages user 1 - 1;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-1*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-1*/ EVENT_NAME from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-1*/ EVENT_NAME from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
|
||||
echo "=========================== Stages user 2";
|
||||
echo ########################### Stages user 2 - 1;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*2-1*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Stages user 3";
|
||||
echo ########################### Stages user 3 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_stages_current
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Stages user 4";
|
||||
echo ########################### Stages user 4 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_stages_current
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Waits user 1";
|
||||
echo ########################### Waits user 1 - 1;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select (count(*) > 5) as has_waits from performance_schema.events_waits_history
|
||||
evalp select /*1-1*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-1*/ (count(*) > 5) as has_waits from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select (count(*) > 15) as has_waits from performance_schema.events_waits_history_long
|
||||
evalp select /*1-1*/ (count(*) > 15) as has_waits from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Waits user 2";
|
||||
echo ########################### Waits user 2 - 1;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*2-1*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*2-1*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Waits user 3";
|
||||
echo ########################### Waits user 3 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_waits_current
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*3-1*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Waits user 4";
|
||||
echo ########################### Waits user 4 - 1;
|
||||
|
||||
eval select count(*) from performance_schema.events_waits_current
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*4-1*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
--enable_query_log
|
||||
|
||||
--echo # Switch to connection default, disable consumers
|
||||
--connection default
|
||||
|
||||
update performance_schema.setup_consumers
|
||||
@ -296,7 +272,6 @@ truncate table performance_schema.events_waits_current;
|
||||
truncate table performance_schema.events_waits_history;
|
||||
truncate table performance_schema.events_waits_history_long;
|
||||
|
||||
--echo # Switch to connection con1
|
||||
--connection con1
|
||||
|
||||
XA START 'XA_CON1', 'XA_BQUAL', 12;
|
||||
@ -305,7 +280,6 @@ XA END 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON1', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con2
|
||||
--connection con2
|
||||
|
||||
XA START 'XA_CON2', 'XA_BQUAL', 12;
|
||||
@ -314,7 +288,6 @@ XA END 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON2', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con3
|
||||
--connection con3
|
||||
|
||||
XA START 'XA_CON3', 'XA_BQUAL', 12;
|
||||
@ -323,7 +296,6 @@ XA END 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON3', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con4
|
||||
--connection con4
|
||||
|
||||
XA START 'XA_CON4', 'XA_BQUAL', 12;
|
||||
@ -334,161 +306,150 @@ XA COMMIT 'XA_CON4', 'XA_BQUAL', 12;
|
||||
|
||||
--connection default
|
||||
|
||||
--disable_query_log
|
||||
echo ########################### Transactions user 1 - 2;
|
||||
|
||||
echo "=========================== Transactions user 1";
|
||||
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
evalp select /*1-2*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*1-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*1-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 2";
|
||||
echo ########################### Transactions user 2 - 2;
|
||||
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
evalp select /*2-2*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 3";
|
||||
echo ########################### Transactions user 3 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_transactions_current
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 4";
|
||||
echo ########################### Transactions user 4 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_transactions_current
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Statements user 1";
|
||||
echo ########################### Statements user 1 - 2;
|
||||
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*1-2*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*1-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Statements user 2";
|
||||
echo ########################### Statements user 2 - 2;
|
||||
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*2-2*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Statements user 3";
|
||||
echo ########################### Statements user 3 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_statements_current
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Statements user 4";
|
||||
echo ########################### Statements user 4 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_statements_current
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Stages user 1";
|
||||
echo ########################### Stages user 1 - 2;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*1-2*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*1-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Stages user 2";
|
||||
echo ########################### Stages user 2 - 2;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*2-2*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Stages user 3";
|
||||
echo ########################### Stages user 3 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_stages_current
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Stages user 4";
|
||||
echo ########################### Stages user 4 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_stages_current
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Waits user 1";
|
||||
echo ########################### Waits user 1 - 2;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) as has_waits from performance_schema.events_waits_history
|
||||
evalp select /*1-2*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-2*/ count(*) as has_waits from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select count(*) as has_waits from performance_schema.events_waits_history_long
|
||||
evalp select /*1-2*/ count(*) as has_waits from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Waits user 2";
|
||||
echo ########################### Waits user 2 - 2;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*2-2*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*2-2*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Waits user 3";
|
||||
echo ########################### Waits user 3 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_waits_current
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*3-2*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Waits user 4";
|
||||
echo ########################### Waits user 4 - 2;
|
||||
|
||||
eval select count(*) from performance_schema.events_waits_current
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*4-2*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
--enable_query_log
|
||||
|
||||
--echo # Switch to connection default, enable consumers
|
||||
--connection default
|
||||
|
||||
update performance_schema.setup_consumers
|
||||
@ -509,7 +470,6 @@ truncate table performance_schema.events_waits_current;
|
||||
truncate table performance_schema.events_waits_history;
|
||||
truncate table performance_schema.events_waits_history_long;
|
||||
|
||||
--echo # Switch to connection con1
|
||||
--connection con1
|
||||
|
||||
XA START 'XA_CON1', 'XA_BQUAL', 12;
|
||||
@ -518,7 +478,6 @@ XA END 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON1', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON1', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con2
|
||||
--connection con2
|
||||
|
||||
XA START 'XA_CON2', 'XA_BQUAL', 12;
|
||||
@ -527,7 +486,6 @@ XA END 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON2', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON2', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con3
|
||||
--connection con3
|
||||
|
||||
XA START 'XA_CON3', 'XA_BQUAL', 12;
|
||||
@ -536,7 +494,6 @@ XA END 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA PREPARE 'XA_CON3', 'XA_BQUAL', 12;
|
||||
XA COMMIT 'XA_CON3', 'XA_BQUAL', 12;
|
||||
|
||||
--echo # Switch to connection con4
|
||||
--connection con4
|
||||
|
||||
XA START 'XA_CON4', 'XA_BQUAL', 12;
|
||||
@ -547,165 +504,150 @@ XA COMMIT 'XA_CON4', 'XA_BQUAL', 12;
|
||||
|
||||
--connection default
|
||||
|
||||
--disable_query_log
|
||||
echo ########################### Transactions user 1 - 3;
|
||||
|
||||
echo "=========================== Transactions user 1";
|
||||
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
evalp select /*1-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history
|
||||
evalp select /*1-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history_long
|
||||
evalp select /*1-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 2";
|
||||
echo ########################### Transactions user 2 - 3;
|
||||
|
||||
eval select XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
evalp select /*2-3*/ XID_FORMAT_ID, XID_GTRID, XID_BQUAL from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 3";
|
||||
echo ########################### Transactions user 3 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_transactions_current
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Transactions user 4";
|
||||
echo ########################### Transactions user 4 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_transactions_current
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_transactions_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_transactions_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_transactions_history_long
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_transactions_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Statements user 1";
|
||||
echo ########################### Statements user 1 - 3;
|
||||
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
|
||||
echo "=========================== Statements user 2";
|
||||
echo ########################### Statements user 2 - 3;
|
||||
|
||||
eval select EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*2-3*/ EVENT_NAME, SQL_TEXT from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Statements user 3";
|
||||
echo ########################### Statements user 3 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_statements_current
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Statements user 4";
|
||||
echo ########################### Statements user 4 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_statements_current
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_statements_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_statements_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_statements_history_long
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_statements_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Stages user 1";
|
||||
echo ########################### Stages user 1 - 3;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select EVENT_NAME from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-3*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-3*/ EVENT_NAME from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-3*/ EVENT_NAME from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
|
||||
echo "=========================== Stages user 2";
|
||||
echo ########################### Stages user 2 - 3;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*2-3*/ EVENT_NAME from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Stages user 3";
|
||||
echo ########################### Stages user 3 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_stages_current
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Stages user 4";
|
||||
echo ########################### Stages user 4 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_stages_current
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_stages_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_stages_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_stages_history_long
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_stages_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
echo "=========================== Waits user 1";
|
||||
echo ########################### Waits user 1 - 3;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select (count(*) > 5) as has_waits from performance_schema.events_waits_history
|
||||
evalp select /*1-3*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con1_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*1-3*/ (count(*) > 5) as has_waits from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
eval select (count(*) > 15) as has_waits from performance_schema.events_waits_history_long
|
||||
evalp select /*1-3*/ (count(*) > 15) as has_waits from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con1_thread_id;
|
||||
|
||||
echo "=========================== Waits user 2";
|
||||
echo ########################### Waits user 2 - 3;
|
||||
|
||||
eval select EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id
|
||||
order by THREAD_ID, EVENT_ID;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*2-3*/ EVENT_NAME from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con2_thread_id order by THREAD_ID, EVENT_ID;
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*2-3*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con2_thread_id;
|
||||
|
||||
echo "=========================== Waits user 3";
|
||||
echo ########################### Waits user 3 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_waits_current
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*3-3*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con3_thread_id;
|
||||
|
||||
echo "=========================== Waits user 4";
|
||||
echo ########################### Waits user 4 - 3;
|
||||
|
||||
eval select count(*) from performance_schema.events_waits_current
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_waits_current
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_waits_history
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
eval select count(*) from performance_schema.events_waits_history_long
|
||||
evalp select /*4-3*/ count(*) from performance_schema.events_waits_history_long
|
||||
where THREAD_ID = $con4_thread_id;
|
||||
|
||||
--enable_query_log
|
||||
|
||||
--echo # Switch to connection default
|
||||
--connection default
|
||||
|
||||
revoke all privileges, grant option from user1@localhost;
|
||||
|
Reference in New Issue
Block a user