diff options
Diffstat (limited to 'mysql-test')
178 files changed, 7135 insertions, 10146 deletions
diff --git a/mysql-test/extra/binlog_tests/binlog_index.inc b/mysql-test/extra/binlog_tests/binlog_index.inc index 50215aef9a9..b930386a0ba 100644 --- a/mysql-test/extra/binlog_tests/binlog_index.inc +++ b/mysql-test/extra/binlog_tests/binlog_index.inc @@ -18,7 +18,7 @@ call mtr.add_suppression('Attempting backtrace'); call mtr.add_suppression('MYSQL_BIN_LOG::purge_logs failed to process registered files that would be purged.'); call mtr.add_suppression('MYSQL_BIN_LOG::open failed to sync the index file'); call mtr.add_suppression('Turning logging off for the whole duration of the MySQL server process.'); -call mtr.add_suppression('Could not open .*'); +call mtr.add_suppression('Could not use .*'); call mtr.add_suppression('MYSQL_BIN_LOG::purge_logs failed to clean registers before purging logs.'); flush tables; diff --git a/mysql-test/extra/rpl_tests/rpl_binlog_errors.inc b/mysql-test/extra/rpl_tests/rpl_binlog_errors.inc index 49ab4f386bf..46c76f2b04c 100644 --- a/mysql-test/extra/rpl_tests/rpl_binlog_errors.inc +++ b/mysql-test/extra/rpl_tests/rpl_binlog_errors.inc @@ -286,7 +286,7 @@ SET GLOBAL debug_dbug=@old_debug; ### file or failure to write the rotate event. call mtr.add_suppression("MYSQL_BIN_LOG::open failed to sync the index file."); -call mtr.add_suppression("Could not open .*"); +call mtr.add_suppression("Could not use .*"); RESET MASTER; SHOW WARNINGS; @@ -392,7 +392,7 @@ RESET MASTER; call mtr.add_suppression("Slave I/O: Relay log write failure: could not queue event from master.*"); call mtr.add_suppression("Error writing file .*"); -call mtr.add_suppression("Could not open .*"); +call mtr.add_suppression("Could not use .*"); call mtr.add_suppression("MYSQL_BIN_LOG::open failed to sync the index file."); call mtr.add_suppression("Can't generate a unique log-filename .*"); -- echo ###################### TEST #13 diff --git a/mysql-test/include/check-testcase.test b/mysql-test/include/check-testcase.test index 3b2c2a46590..a282201857e 100644 --- a/mysql-test/include/check-testcase.test +++ b/mysql-test/include/check-testcase.test @@ -82,6 +82,8 @@ call mtr.check_testcase(); let $datadir=`select @@datadir`; list_files $datadir mysql_upgrade_info; +list_files $datadir/test #sql*; +list_files $datadir/mysql #sql*; --enable_query_log diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 1b072ef7dc7..9f83d6c9d6e 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1914,10 +1914,10 @@ sub collect_mysqld_features_from_running_server () #print "Major: $1 Minor: $2 Build: $3\n"; $mysql_version_id= $1*10000 + $2*100 + $3; #print "mysql_version_id: $mysql_version_id\n"; - mtr_report("MySQL Version $1.$2.$3"); + mtr_report("MariaDB Version $1.$2.$3"); $mysql_version_extra= $4; } - mtr_error("Could not find version of MySQL") unless $mysql_version_id; + mtr_error("Could not find version of MariaDBL") unless $mysql_version_id; } sub find_mysqld { @@ -2207,7 +2207,7 @@ sub environment_setup { $ENV{'UMASK_DIR'}= "0770"; # The octal *string* # - # MySQL tests can produce output in various character sets + # MariaDB tests can produce output in various character sets # (especially, ctype_xxx.test). To avoid confusing Perl # with output which is incompatible with the current locale # settings, we reset the current values of LC_ALL and LC_CTYPE to "C". @@ -2538,7 +2538,7 @@ sub setup_vardir() { if (check_socket_path_length("$opt_tmpdir/testsocket.sock")){ mtr_error("Socket path '$opt_tmpdir' too long, it would be ", "truncated and thus not possible to use for connection to ", - "MySQL Server. Set a shorter with --tmpdir=<path> option"); + "MariaDB Server. Set a shorter with --tmpdir=<path> option"); } # copy all files from std_data into var/std_data @@ -4394,12 +4394,12 @@ sub extract_warning_lines ($$) { qr/Slave I\/O: error reconnecting to master '.*' - retry-time: [1-3] retries/, qr/Slave I\/0: Master command COM_BINLOG_DUMP failed/, qr/Error reading packet/, - qr/Lost connection to MySQL server at 'reading initial communication packet'/, + qr/Lost connection to MariaDB server at 'reading initial communication packet'/, qr/Failed on request_dump/, qr/Slave: Can't drop database.* database doesn't exist/, qr/Slave: Operation DROP USER failed for 'create_rout_db'/, qr|Checking table: '\..mtr.test_suppressions'|, - qr|Table \./test/bug53592 has a primary key in InnoDB data dictionary, but not in MySQL|, + qr|Table \./test/bug53592 has a primary key in InnoDB data dictionary, but not in|, qr|Table '\..mtr.test_suppressions' is marked as crashed and should be repaired|, qr|Table 'test_suppressions' is marked as crashed and should be repaired|, qr|Can't open shared library|, diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index dca48c07fe9..b4636dca7e2 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -1173,6 +1173,7 @@ t1 CREATE TABLE `t1` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, @@ -1196,6 +1197,7 @@ t1 CREATE TEMPORARY TABLE `t1` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, diff --git a/mysql-test/r/cte_nonrecursive.result b/mysql-test/r/cte_nonrecursive.result index 3ad6fb8fabe..d0e42cf4042 100644 --- a/mysql-test/r/cte_nonrecursive.result +++ b/mysql-test/r/cte_nonrecursive.result @@ -1079,3 +1079,71 @@ id select_type table type possible_keys key key_len ref rows Extra 3 DERIVED t2 ALL NULL NULL NULL NULL 3 Using where; Using join buffer (flat, BNL join) NULL UNION RESULT <union1,4> ALL NULL NULL NULL NULL NULL DROP TABLE t1,t2; +# +# MDEV-13780: tower of embedding CTEs with multiple usage of them +# +create table t1 (a int); +insert into t1 values (3), (2), (4), (7), (1), (2), (5); +with cte_e as +( +with cte_o as +( +with cte_i as (select * from t1 where a < 7) +select * from cte_i where a > 1 +) +select * from cte_o as cto_o1 where a < 3 +union +select * from cte_o as cto_o2 where a > 4 +) +select * from cte_e as cte_e1 where a > 1 +union +select * from cte_e as cte_e2; +a +2 +5 +explain extended with cte_e as +( +with cte_o as +( +with cte_i as (select * from t1 where a < 7) +select * from cte_i where a > 1 +) +select * from cte_o as cto_o1 where a < 3 +union +select * from cte_o as cto_o2 where a > 4 +) +select * from cte_e as cte_e1 where a > 1 +union +select * from cte_e as cte_e2; +id select_type table type possible_keys key key_len ref rows filtered Extra +1 PRIMARY <derived2> ALL NULL NULL NULL NULL 14 100.00 Using where +2 DERIVED t1 ALL NULL NULL NULL NULL 7 100.00 Using where +5 UNION t1 ALL NULL NULL NULL NULL 7 100.00 Using where +NULL UNION RESULT <union2,5> ALL NULL NULL NULL NULL NULL NULL +6 UNION <derived9> ALL NULL NULL NULL NULL 14 100.00 +9 DERIVED t1 ALL NULL NULL NULL NULL 7 100.00 Using where +12 UNION t1 ALL NULL NULL NULL NULL 7 100.00 Using where +NULL UNION RESULT <union9,12> ALL NULL NULL NULL NULL NULL NULL +NULL UNION RESULT <union1,6> ALL NULL NULL NULL NULL NULL NULL +Warnings: +Note 1003 with cte_e as (with cte_o as (with cte_i as (/* select#4 */ select `test`.`t1`.`a` AS `a` from `test`.`t1` where `test`.`t1`.`a` < 7)/* select#3 */ select `test`.`t1`.`a` AS `a` from `test`.`t1` where `test`.`t1`.`a` > 1)/* select#2 */ select `test`.`t1`.`a` AS `a` from `test`.`t1` where `test`.`t1`.`a` < 3 and `test`.`t1`.`a` > 1 and `test`.`t1`.`a` < 7 and `test`.`t1`.`a` > 1 union /* select#5 */ select `test`.`t1`.`a` AS `a` from `test`.`t1` where `test`.`t1`.`a` > 4 and `test`.`t1`.`a` > 1 and `test`.`t1`.`a` < 7 and `test`.`t1`.`a` > 1)/* select#1 */ select `cte_e1`.`a` AS `a` from `cte_e` `cte_e1` where `cte_e1`.`a` > 1 union /* select#6 */ select `cte_e2`.`a` AS `a` from `cte_e` `cte_e2` +drop table t1; +# +# MDEV-13753: embedded CTE in a VIEW created in prepared statement +# +SET @sql_query = " + CREATE OR REPLACE VIEW cte_test AS + WITH cte1 AS ( SELECT 1 as a from dual ) + , cte2 AS ( SELECT * FROM cte1 ) + SELECT * FROM cte2; +"; +PREPARE stmt FROM @sql_query; +EXECUTE stmt; +DEALLOCATE PREPARE stmt; +SHOW CREATE VIEW cte_test; +View Create View character_set_client collation_connection +cte_test CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `cte_test` AS with cte1 as (select 1 AS `a`), cte2 as (select `cte1`.`a` AS `a` from `cte1`)select `cte2`.`a` AS `a` from `cte2` latin1 latin1_swedish_ci +SELECT * FROM cte_test; +a +1 +DROP VIEW cte_test; diff --git a/mysql-test/r/cte_recursive.result b/mysql-test/r/cte_recursive.result index a4f32927cf1..b902333ddc4 100644 --- a/mysql-test/r/cte_recursive.result +++ b/mysql-test/r/cte_recursive.result @@ -2881,3 +2881,48 @@ f 2 set standard_compliant_cte=default; DROP TABLE t; +# +# mdev-14184: recursive CTE embedded into CTE with multiple references +# +WITH +cte1 AS ( +SELECT n FROM ( +WITH RECURSIVE rec_cte(n) AS ( +SELECT 1 as n1 +UNION ALL +SELECT n+1 as n2 FROM rec_cte WHERE n < 3 +) SELECT n FROM rec_cte +) AS X +), +cte2 as ( +SELECT 2 FROM cte1 +) +SELECT * +FROM cte1; +n +1 +2 +3 +# +# MDEV-14217 [db crash] Recursive CTE when SELECT includes new field +# +CREATE TEMPORARY TABLE a_tbl ( +a VARCHAR(33) PRIMARY KEY, +b VARCHAR(33) +); +INSERT INTO a_tbl VALUES ('block0', 'block0'), ('block1', NULL); +WITH RECURSIVE Q0 AS ( +SELECT T0.a, T0.b, 5 +FROM a_tbl T0 +WHERE b IS NULL +UNION ALL +SELECT T1.a, T1.b +FROM Q0 +JOIN a_tbl T1 +ON T1.a=Q0.a +) SELECT distinct(Q0.a), Q0.b +FROM Q0; +ERROR 21000: The used SELECT statements have a different number of columns +DROP TABLE a_tbl; +WITH RECURSIVE x AS (SELECT 1,2 UNION ALL SELECT 1 FROM x) SELECT * FROM x; +ERROR 21000: The used SELECT statements have a different number of columns diff --git a/mysql-test/r/delimiter_command_case_sensitivity.result b/mysql-test/r/delimiter_command_case_sensitivity.result new file mode 100644 index 00000000000..6ed281c757a --- /dev/null +++ b/mysql-test/r/delimiter_command_case_sensitivity.result @@ -0,0 +1,2 @@ +1 +1 diff --git a/mysql-test/r/derived_cond_pushdown.result b/mysql-test/r/derived_cond_pushdown.result index 9001c5fef43..d8d03d6d062 100644 --- a/mysql-test/r/derived_cond_pushdown.result +++ b/mysql-test/r/derived_cond_pushdown.result @@ -8783,6 +8783,47 @@ EXPLAIN DROP VIEW v2; DROP TABLE t1,t2; # +# MDEV-14237: derived with regexp_substr() in select list +# +create table t1 (a char(8)); +insert into t1 values ('b'), ('a'), ('xx'); +select * +from ( select distinct regexp_substr(t1.a,'^[A-Za-z]+') as f from t1) as t +where t.f = 'a' or t.f = 'b'; +f +b +a +explain format=json select * +from ( select distinct regexp_substr(t1.a,'^[A-Za-z]+') as f from t1) as t +where t.f = 'a' or t.f = 'b'; +EXPLAIN +{ + "query_block": { + "select_id": 1, + "table": { + "table_name": "<derived2>", + "access_type": "ALL", + "rows": 3, + "filtered": 100, + "attached_condition": "t.f = 'a' or t.f = 'b'", + "materialized": { + "query_block": { + "select_id": 2, + "temporary_table": { + "table": { + "table_name": "t1", + "access_type": "ALL", + "rows": 3, + "filtered": 100 + } + } + } + } + } + } +} +drop table t1; +# # MDEV-10855: Pushdown into derived with window functions # set @save_optimizer_switch= @@optimizer_switch; diff --git a/mysql-test/r/errors.result b/mysql-test/r/errors.result index a139d34fa86..ba05a2b37d4 100644 --- a/mysql-test/r/errors.result +++ b/mysql-test/r/errors.result @@ -174,3 +174,11 @@ set max_session_mem_used = 50000; select * from seq_1_to_1000; set max_session_mem_used = 8192; select * from seq_1_to_1000; +# +# MDEV-14269 errors.test fails with valgrind (Conditional jump or move depends on uninitialised value) +# +SET NAMES utf8; +SELECT UPDATEXML(-73 * -2465717823867977728,@@global.auto_increment_increment,null); +ERROR 22003: BIGINT value is out of range in '-73 * -2465717823867977728' +SELECT UPDATEXML(-73 * -2465717823867977728,@@global.long_query_time,null); +ERROR 22003: BIGINT value is out of range in '-73 * -2465717823867977728' diff --git a/mysql-test/r/func_misc.result b/mysql-test/r/func_misc.result index 6c7c6b018ad..982856e980a 100644 --- a/mysql-test/r/func_misc.result +++ b/mysql-test/r/func_misc.result @@ -1458,6 +1458,20 @@ CONCAT(NAME_CONST('name',15),'오') 15오 SET NAMES latin1; # +# MDEV-14116 INET6_NTOA output is set as null to varchar(39) variable +# +CREATE PROCEDURE p1() +BEGIN +DECLARE ip_full_addr varchar(39) DEFAULT ""; +SELECT INET6_NTOA(UNHEX('20000000000000000000000000000000')) into ip_full_addr; +SELECT ip_full_addr; +END; +$$ +CALL p1(); +ip_full_addr +2000:: +DROP PROCEDURE p1; +# # Start of 10.2 tests # # diff --git a/mysql-test/r/having.result b/mysql-test/r/having.result index 4a429e1b119..8a8d6e7b2aa 100644 --- a/mysql-test/r/having.result +++ b/mysql-test/r/having.result @@ -727,3 +727,76 @@ A COUNT(*) DROP VIEW v1; DROP TABLE t1; End of 10.1 tests +# +# MDEV-14093: GROUP BY with HAVING over function + ORDER BY +# +CREATE TABLE _authors ( +id MEDIUMINT(8) UNSIGNED AUTO_INCREMENT, +name VARCHAR(100), +some_field MEDIUMINT(8) UNSIGNED, +PRIMARY KEY (id), +index(some_field) +); +CREATE TABLE _books ( +id MEDIUMINT(8) UNSIGNED AUTO_INCREMENT, +title VARCHAR(100), +PRIMARY KEY (id) +); +CREATE TABLE _books2authors ( +author_id MEDIUMINT(8) DEFAULT 0, +book_id MEDIUMINT(8) DEFAULT 0, +index(author_id), +index(book_id) +); +INSERT INTO _authors (name, some_field) VALUES +('author1', 1),('author2', 2),('author3', 3); +INSERT INTO _books (title) VALUES +('book1'),('book2'),('book3'); +INSERT INTO _books2authors (author_id, book_id) VALUES +(2,1),(3,2),(3,3); +SELECT A.id, +GROUP_CONCAT(B.title ORDER BY B.title DESC SEPARATOR ',') AS books, +some_field-1 AS having_field +FROM _authors A +LEFT JOIN _books2authors B2A FORCE INDEX(author_id) +ON B2A.author_id = A.id +LEFT JOIN +_books B ON B.id = B2A.book_id +GROUP BY A.id +HAVING having_field < 1 +ORDER BY having_field ASC; +id books having_field +1 NULL 0 +DROP TABLE _authors, _books, _books2authors; +# +# Bug#17055185: WRONG RESULTS WHEN RUNNING A SELECT THAT INCLUDE +# A HAVING BASED ON A FUNCTION. +# +CREATE TABLE series ( +val INT(10) UNSIGNED NOT NULL +); +INSERT INTO series VALUES(1); +CREATE FUNCTION next_seq_value() RETURNS INT +BEGIN +DECLARE next_val INT; +SELECT val INTO next_val FROM series; +UPDATE series SET val=mod(val + 1, 2); +RETURN next_val; +END; +| +CREATE TABLE t1 (t INT, u INT, KEY(t)); +INSERT INTO t1 VALUES(10, 10), (11, 11), (12, 12), (12, 13),(14, 15), (15, 16), +(16, 17), (17, 17); +ANALYZE TABLE t1; +Table Op Msg_type Msg_text +test.t1 analyze status OK +SELECT t, next_seq_value() r FROM t1 FORCE INDEX(t) +GROUP BY t HAVING r = 1 ORDER BY t1.u; +t r +10 1 +12 1 +15 1 +17 1 +DROP TABLE t1; +DROP FUNCTION next_seq_value; +DROP TABLE series; diff --git a/mysql-test/r/mysqld--help.result b/mysql-test/r/mysqld--help.result index 1b5a0da7588..b5d68d6bee2 100644 --- a/mysql-test/r/mysqld--help.result +++ b/mysql-test/r/mysqld--help.result @@ -1496,7 +1496,7 @@ performance-schema-max-rwlock-classes 40 performance-schema-max-rwlock-instances -1 performance-schema-max-socket-classes 10 performance-schema-max-socket-instances -1 -performance-schema-max-stage-classes 150 +performance-schema-max-stage-classes 160 performance-schema-max-statement-classes 191 performance-schema-max-table-handles -1 performance-schema-max-table-instances -1 diff --git a/mysql-test/r/show_explain_ps.result b/mysql-test/r/show_explain_ps.result index 71c8f117fa2..fae432e830e 100644 --- a/mysql-test/r/show_explain_ps.result +++ b/mysql-test/r/show_explain_ps.result @@ -4,7 +4,7 @@ drop table if exists t0, t1; select * from performance_schema.setup_instruments where name like '%show_explain%'; NAME ENABLED TIMED wait/synch/cond/sql/show_explain YES YES -stage/sql/show explain YES YES +stage/sql/Show explain YES YES statement/sql/show_explain YES YES # We've got no instances select * from performance_schema.cond_instances where name like '%show_explain%'; @@ -38,5 +38,5 @@ thread_id in(select thread_id from performance_schema.events_statements_history_long where EVENT_NAME='statement/sql/show_explain'); event_name -stage/sql/show explain +stage/sql/Show explain drop table t0; diff --git a/mysql-test/r/subselect_exists2in.result b/mysql-test/r/subselect_exists2in.result index 8b525436c2f..95fc1c19b82 100644 --- a/mysql-test/r/subselect_exists2in.result +++ b/mysql-test/r/subselect_exists2in.result @@ -934,5 +934,42 @@ f2 foo set optimizer_switch= @optimizer_switch_save; DROP TABLE t1; +# +# MDEV-14164: Unknown column error when adding aggregate to function +# in oracle style procedure FOR loop +# +CREATE TABLE t1(id INT, val INT); +CREATE PROCEDURE p1() +BEGIN +DECLARE cur1 CURSOR FOR SELECT * FROM ( +SELECT DISTINCT id FROM t1) a +WHERE NOT EXISTS (SELECT * FROM ( SELECT id FROM t1) b +WHERE a.id=b.id); +OPEN cur1; +CLOSE cur1; +OPEN cur1; +CLOSE cur1; +END; +// +CALL p1(); +DROP PROCEDURE p1; +DROP TABLE t1; +CREATE TABLE t1(id INT, val INT); +CREATE PROCEDURE p1() +BEGIN +SELECT * FROM (SELECT DISTINCT id FROM t1) a +WHERE NOT a.id IN (SELECT b.id FROM t1 b); +SELECT * FROM (SELECT DISTINCT id FROM t1) a +WHERE NOT EXISTS (SELECT * FROM t1 b WHERE a.id=b.id); +END; +// +CALL p1(); +id +id +CALL p1(); +id +id +DROP PROCEDURE p1; +DROP TABLE t1; # End of 10.0 tests set optimizer_switch=default; diff --git a/mysql-test/r/type_bit.result b/mysql-test/r/type_bit.result index b2067907391..30cd94c9277 100644 --- a/mysql-test/r/type_bit.result +++ b/mysql-test/r/type_bit.result @@ -806,3 +806,27 @@ SUM(a) NULL DROP TABLE t1; End of 5.1 tests +# +# Start of 10.1 tests +# +# +# MDEV-8867 Wrong field type or metadata for COALESCE(bit_column, 1) +# +CREATE TABLE t1 (val bit(1)); +INSERT INTO t1 VALUES (0); +CREATE TABLE t2 AS SELECT COALESCE(val, 1) AS c FROM t1; +SELECT * FROM t2; +c +0 +SHOW CREATE TABLE t2; +Table Create Table +t2 CREATE TABLE `t2` ( + `c` decimal(1,0) DEFAULT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +DROP TABLE t2; +SELECT COALESCE(val, 1) FROM t1; +Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr +def COALESCE(val, 1) 246 2 1 Y 32896 0 63 +COALESCE(val, 1) +0 +DROP TABLE t1; diff --git a/mysql-test/r/type_date.result b/mysql-test/r/type_date.result index d56fac962fe..69bdf569787 100644 --- a/mysql-test/r/type_date.result +++ b/mysql-test/r/type_date.result @@ -852,6 +852,17 @@ Warning 1292 Incorrect datetime value: '1' Warning 1292 Incorrect datetime value: '1' DROP TABLE t1; # +# MDEV-14221 Assertion `0' failed in Item::field_type_for_temporal_comparison +# +CREATE TABLE t1 (d DATE); +INSERT INTO t1 VALUES ('1985-05-13'),('1989-12-24'); +SELECT d, COUNT(*) FROM t1 GROUP BY d WITH ROLLUP HAVING CASE d WHEN '2017-05-25' THEN 0 ELSE 1 END; +d COUNT(*) +1985-05-13 1 +1989-12-24 1 +NULL 2 +DROP TABLE t1; +# # End of 10.1 tests # # diff --git a/mysql-test/r/type_time.result b/mysql-test/r/type_time.result index 1600732cec3..89718ea8363 100644 --- a/mysql-test/r/type_time.result +++ b/mysql-test/r/type_time.result @@ -1245,6 +1245,20 @@ a b c 2070 00:00:00 00:00:00 DROP TABLE t1,t2; # +# MDEV-10817 CAST(MAX(DATE'2001-01-01') AS TIME) returns a wrong result +# +SELECT CAST(DATE'2001-01-01' AS TIME); +CAST(DATE'2001-01-01' AS TIME) +00:00:00 +SELECT CAST(MAX(DATE'2001-01-01') AS TIME); +CAST(MAX(DATE'2001-01-01') AS TIME) +00:00:00 +CREATE FUNCTION f1() RETURNS DATE RETURN DATE'2001-01-01'; +SELECT CAST(f1() AS TIME); +CAST(f1() AS TIME) +00:00:00 +DROP FUNCTION f1; +# # End of 10.2 tests # # diff --git a/mysql-test/suite/binlog/r/binlog_index.result b/mysql-test/suite/binlog/r/binlog_index.result index bb5d9ff74f1..02af5e40aab 100644 --- a/mysql-test/suite/binlog/r/binlog_index.result +++ b/mysql-test/suite/binlog/r/binlog_index.result @@ -2,7 +2,7 @@ call mtr.add_suppression('Attempting backtrace'); call mtr.add_suppression('MYSQL_BIN_LOG::purge_logs failed to process registered files that would be purged.'); call mtr.add_suppression('MYSQL_BIN_LOG::open failed to sync the index file'); call mtr.add_suppression('Turning logging off for the whole duration of the MySQL server process.'); -call mtr.add_suppression('Could not open .*'); +call mtr.add_suppression('Could not use .*'); call mtr.add_suppression('MYSQL_BIN_LOG::purge_logs failed to clean registers before purging logs.'); flush tables; RESET MASTER; diff --git a/mysql-test/suite/binlog_encryption/binlog_index.result b/mysql-test/suite/binlog_encryption/binlog_index.result index bb5d9ff74f1..02af5e40aab 100644 --- a/mysql-test/suite/binlog_encryption/binlog_index.result +++ b/mysql-test/suite/binlog_encryption/binlog_index.result @@ -2,7 +2,7 @@ call mtr.add_suppression('Attempting backtrace'); call mtr.add_suppression('MYSQL_BIN_LOG::purge_logs failed to process registered files that would be purged.'); call mtr.add_suppression('MYSQL_BIN_LOG::open failed to sync the index file'); call mtr.add_suppression('Turning logging off for the whole duration of the MySQL server process.'); -call mtr.add_suppression('Could not open .*'); +call mtr.add_suppression('Could not use .*'); call mtr.add_suppression('MYSQL_BIN_LOG::purge_logs failed to clean registers before purging logs.'); flush tables; RESET MASTER; diff --git a/mysql-test/suite/binlog_encryption/rpl_binlog_errors.result b/mysql-test/suite/binlog_encryption/rpl_binlog_errors.result index 06be72d523b..eb58dd06997 100644 --- a/mysql-test/suite/binlog_encryption/rpl_binlog_errors.result +++ b/mysql-test/suite/binlog_encryption/rpl_binlog_errors.result @@ -173,7 +173,7 @@ SET SQL_LOG_BIN=1; SET GLOBAL debug_dbug=@old_debug; ###################### TEST #10 call mtr.add_suppression("MYSQL_BIN_LOG::open failed to sync the index file."); -call mtr.add_suppression("Could not open .*"); +call mtr.add_suppression("Could not use .*"); RESET MASTER; SHOW WARNINGS; Level Code Message @@ -233,7 +233,7 @@ include/rpl_reset.inc connection slave; call mtr.add_suppression("Slave I/O: Relay log write failure: could not queue event from master.*"); call mtr.add_suppression("Error writing file .*"); -call mtr.add_suppression("Could not open .*"); +call mtr.add_suppression("Could not use .*"); call mtr.add_suppression("MYSQL_BIN_LOG::open failed to sync the index file."); call mtr.add_suppression("Can't generate a unique log-filename .*"); ###################### TEST #13 diff --git a/mysql-test/suite/funcs_1/datadict/processlist_priv.inc b/mysql-test/suite/funcs_1/datadict/processlist_priv.inc index cd060e7a370..ae46dfd31c8 100644 --- a/mysql-test/suite/funcs_1/datadict/processlist_priv.inc +++ b/mysql-test/suite/funcs_1/datadict/processlist_priv.inc @@ -158,7 +158,7 @@ WHERE DB = 'information_schema' AND COMMAND = 'Sleep' AND USER = 'ddicttestuser1 eval SHOW CREATE TABLE $table; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS eval SHOW $table; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID eval SELECT * FROM $table $select_where ORDER BY id; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID eval SELECT $columns FROM $table $select_where ORDER BY id; @@ -178,7 +178,7 @@ connection con100; eval SHOW CREATE TABLE $table; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS eval SHOW $table; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID eval SELECT * FROM $table $select_where ORDER BY id; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID eval SELECT $columns FROM $table $select_where ORDER BY id; @@ -204,7 +204,7 @@ connection con100; SHOW GRANTS; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -216,7 +216,7 @@ connect (con101,localhost,ddicttestuser1,ddictpass,information_schema); SHOW GRANTS; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -239,7 +239,7 @@ connect (anonymous1,localhost,"''",,information_schema); SHOW GRANTS; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -261,7 +261,7 @@ connect (con102,localhost,ddicttestuser1,ddictpass,information_schema); SHOW GRANTS; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -287,7 +287,7 @@ if ($fixed_bug_30395) --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; } ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -308,7 +308,7 @@ connect (con103,localhost,ddicttestuser1,ddictpass,information_schema); SHOW GRANTS FOR 'ddicttestuser1'@'localhost'; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -330,7 +330,7 @@ connect (con104,localhost,ddicttestuser1,ddictpass,information_schema); SHOW GRANTS FOR 'ddicttestuser1'@'localhost'; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -377,7 +377,7 @@ connect (con200,localhost,ddicttestuser2,ddictpass,information_schema); SHOW GRANTS FOR 'ddicttestuser2'@'localhost'; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -398,7 +398,7 @@ connect (con201,localhost,ddicttestuser2,ddictpass,information_schema); SHOW GRANTS; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -421,7 +421,7 @@ SHOW GRANTS FOR 'ddicttestuser1'@'localhost'; GRANT PROCESS ON *.* TO 'ddicttestuser2'@'localhost'; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 @@ -445,7 +445,7 @@ connect (con108,localhost,ddicttestuser1,ddictpass,information_schema); SHOW GRANTS FOR 'ddicttestuser1'@'localhost'; --replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS SHOW processlist; ---replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 ROWS 15 QUERY_ID 17 TID +--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS 13 MEMORY 14 MAX_MEMORY 15 ROWS 16 QUERY_ID 18 TID SELECT * FROM information_schema.processlist; --real_sleep 0.3 diff --git a/mysql-test/suite/funcs_1/datadict/processlist_val.inc b/mysql-test/suite/funcs_1/datadict/processlist_val.inc index cfc3c5e751a..24f3eb76a1c 100644 --- a/mysql-test/suite/funcs_1/datadict/processlist_val.inc +++ b/mysql-test/suite/funcs_1/datadict/processlist_val.inc @@ -92,7 +92,7 @@ echo # - INFO must contain the corresponding SHOW/SELECT PROCESSLIST # # 1. Just dump what we get ---replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> 15 <QUERY_ID> 17 <TID> +--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <MAX_MEMORY> 15 <ROWS> 16 <QUERY_ID> 18 <TID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; --replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> SHOW FULL PROCESSLIST; @@ -159,7 +159,7 @@ let $wait_condition= SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE COMMAND = 'Sleep' AND USER = 'test_user'; --source include/wait_condition.inc # 1. Just dump what we get ---replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 7 <STATE> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> 15 <QUERY_ID> 17 <TID> +--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 7 <STATE> 9 <TIME_MS> 13 <MEMORY> 14 <MAX_MEMORY> 15 <ROWS> 16 <QUERY_ID> 18 <TID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; --replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> SHOW FULL PROCESSLIST; @@ -201,7 +201,7 @@ echo #---------------------------------------------------------------------------- ; connection con1; ---replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> 15 <QUERY_ID> 17 <TID> +--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <MAX_MEMORY> 15 <ROWS> 16 <QUERY_ID> 18 <TID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; --replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> SHOW FULL PROCESSLIST; @@ -226,7 +226,7 @@ let $wait_condition= SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.PROCESSLIST --source include/wait_condition.inc connection con2; # Just dump what we get ---replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> 15 <QUERY_ID> 17 <TID> +--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <MAX_MEMORY> 15 <ROWS> 16 <QUERY_ID> 18 <TID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; --replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> SHOW FULL PROCESSLIST; @@ -277,7 +277,7 @@ WHERE ID = @test_user_con2_id AND Command IN('Query','Execute') AND State = 'User sleep' AND INFO IS NOT NULL ; --source include/wait_condition.inc # 1. Just dump what we get ---replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> 15 <QUERY_ID> 17 <TID> +--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <MAX_MEMORY> 15 <ROWS> 16 <QUERY_ID> 18 <TID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; --replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> SHOW FULL PROCESSLIST; @@ -336,7 +336,7 @@ let $wait_condition= SELECT COUNT(*) FROM INFORMATION_SCHEMA.PROCESSLIST # # Expect to see the state 'Waiting for table metadata lock' for the third # connection because the SELECT collides with the WRITE TABLE LOCK. ---replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> 15 <QUERY_ID> 17 <TID> +--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS> 13 <MEMORY> 14 <MAX_MEMORY> 15 <ROWS> 16 <QUERY_ID> 18 <TID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; UNLOCK TABLES; # @@ -383,7 +383,7 @@ echo # SHOW FULL PROCESSLIST Complete statement # SHOW PROCESSLIST statement truncated after 100 char ; ---replace_column 1 <ID> 3 <HOST_NAME> 5 <COMMAND> 6 <TIME> 7 <STATE> 9 <TIME_MS> 13 <MEMORY> 14 <ROWS> 15 <QUERY_ID> 17 <TID> +--replace_column 1 <ID> 3 <HOST_NAME> 5 <COMMAND> 6 <TIME> 7 <STATE> 9 <TIME_MS> 13 <MEMORY> 14 <MAX_MEMORY> 15 <ROWS> 16 <QUERY_ID> 18 <TID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; --replace_column 1 <ID> 3 <HOST_NAME> 5 <COMMAND> 6 <TIME> 7 <STATE> SHOW FULL PROCESSLIST; diff --git a/mysql-test/suite/funcs_1/r/is_columns_is.result b/mysql-test/suite/funcs_1/r/is_columns_is.result index 58105c8d945..ba055f2dc58 100644 --- a/mysql-test/suite/funcs_1/r/is_columns_is.result +++ b/mysql-test/suite/funcs_1/r/is_columns_is.result @@ -256,18 +256,19 @@ def information_schema PLUGINS PLUGIN_TYPE_VERSION 5 '' NO varchar 20 60 NULL NU def information_schema PLUGINS PLUGIN_VERSION 2 '' NO varchar 20 60 NULL NULL NULL utf8 utf8_general_ci varchar(20) select NEVER NULL def information_schema PROCESSLIST COMMAND 5 '' NO varchar 16 48 NULL NULL NULL utf8 utf8_general_ci varchar(16) select NEVER NULL def information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select NEVER NULL -def information_schema PROCESSLIST EXAMINED_ROWS 14 0 NO int NULL NULL 10 0 NULL NULL NULL int(7) select NEVER NULL +def information_schema PROCESSLIST EXAMINED_ROWS 15 0 NO int NULL NULL 10 0 NULL NULL NULL int(7) select NEVER NULL def information_schema PROCESSLIST HOST 3 '' NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select NEVER NULL def information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) select NEVER NULL def information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL NULL utf8 utf8_general_ci longtext select NEVER NULL -def information_schema PROCESSLIST INFO_BINARY 16 NULL YES blob 65535 65535 NULL NULL NULL NULL NULL blob select NEVER NULL +def information_schema PROCESSLIST INFO_BINARY 17 NULL YES blob 65535 65535 NULL NULL NULL NULL NULL blob select NEVER NULL +def information_schema PROCESSLIST MAX_MEMORY_USED 14 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(7) select NEVER NULL def information_schema PROCESSLIST MAX_STAGE 11 0 NO tinyint NULL NULL 3 0 NULL NULL NULL tinyint(2) select NEVER NULL def information_schema PROCESSLIST MEMORY_USED 13 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(7) select NEVER NULL def information_schema PROCESSLIST PROGRESS 12 0.000 NO decimal NULL NULL 7 3 NULL NULL NULL decimal(7,3) select NEVER NULL -def information_schema PROCESSLIST QUERY_ID 15 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) select NEVER NULL +def information_schema PROCESSLIST QUERY_ID 16 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) select NEVER NULL def information_schema PROCESSLIST STAGE 10 0 NO tinyint NULL NULL 3 0 NULL NULL NULL tinyint(2) select NEVER NULL def information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select NEVER NULL -def information_schema PROCESSLIST TID 17 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) select NEVER NULL +def information_schema PROCESSLIST TID 18 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) select NEVER NULL def information_schema PROCESSLIST TIME 6 0 NO int NULL NULL 10 0 NULL NULL NULL int(7) select NEVER NULL def information_schema PROCESSLIST TIME_MS 9 0.000 NO decimal NULL NULL 22 3 NULL NULL NULL decimal(22,3) select NEVER NULL def information_schema PROCESSLIST USER 2 '' NO varchar 128 384 NULL NULL NULL utf8 utf8_general_ci varchar(128) select NEVER NULL @@ -797,6 +798,7 @@ NULL information_schema PROCESSLIST STAGE tinyint NULL NULL NULL NULL tinyint(2) NULL information_schema PROCESSLIST MAX_STAGE tinyint NULL NULL NULL NULL tinyint(2) NULL information_schema PROCESSLIST PROGRESS decimal NULL NULL NULL NULL decimal(7,3) NULL information_schema PROCESSLIST MEMORY_USED bigint NULL NULL NULL NULL bigint(7) +NULL information_schema PROCESSLIST MAX_MEMORY_USED bigint NULL NULL NULL NULL bigint(7) NULL information_schema PROCESSLIST EXAMINED_ROWS int NULL NULL NULL NULL int(7) NULL information_schema PROCESSLIST QUERY_ID bigint NULL NULL NULL NULL bigint(4) 1.0000 information_schema PROCESSLIST INFO_BINARY blob 65535 65535 NULL NULL blob diff --git a/mysql-test/suite/funcs_1/r/is_columns_is_embedded.result b/mysql-test/suite/funcs_1/r/is_columns_is_embedded.result index 4e12db06817..3bb5e5e6364 100644 --- a/mysql-test/suite/funcs_1/r/is_columns_is_embedded.result +++ b/mysql-test/suite/funcs_1/r/is_columns_is_embedded.result @@ -256,18 +256,19 @@ def information_schema PLUGINS PLUGIN_TYPE_VERSION 5 '' NO varchar 20 60 NULL NU def information_schema PLUGINS PLUGIN_VERSION 2 '' NO varchar 20 60 NULL NULL NULL utf8 utf8_general_ci varchar(20) NEVER NULL def information_schema PROCESSLIST COMMAND 5 '' NO varchar 16 48 NULL NULL NULL utf8 utf8_general_ci varchar(16) NEVER NULL def information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) NEVER NULL -def information_schema PROCESSLIST EXAMINED_ROWS 14 0 NO int NULL NULL 10 0 NULL NULL NULL int(7) NEVER NULL +def information_schema PROCESSLIST EXAMINED_ROWS 15 0 NO int NULL NULL 10 0 NULL NULL NULL int(7) NEVER NULL def information_schema PROCESSLIST HOST 3 '' NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) NEVER NULL def information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) NEVER NULL def information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL NULL utf8 utf8_general_ci longtext NEVER NULL -def information_schema PROCESSLIST INFO_BINARY 16 NULL YES blob 65535 65535 NULL NULL NULL NULL NULL blob NEVER NULL +def information_schema PROCESSLIST INFO_BINARY 17 NULL YES blob 65535 65535 NULL NULL NULL NULL NULL blob NEVER NULL +def information_schema PROCESSLIST MAX_MEMORY_USED 14 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(7) NEVER NULL def information_schema PROCESSLIST MAX_STAGE 11 0 NO tinyint NULL NULL 3 0 NULL NULL NULL tinyint(2) NEVER NULL def information_schema PROCESSLIST MEMORY_USED 13 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(7) NEVER NULL def information_schema PROCESSLIST PROGRESS 12 0.000 NO decimal NULL NULL 7 3 NULL NULL NULL decimal(7,3) NEVER NULL -def information_schema PROCESSLIST QUERY_ID 15 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) NEVER NULL +def information_schema PROCESSLIST QUERY_ID 16 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) NEVER NULL def information_schema PROCESSLIST STAGE 10 0 NO tinyint NULL NULL 3 0 NULL NULL NULL tinyint(2) NEVER NULL def information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) NEVER NULL -def information_schema PROCESSLIST TID 17 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) NEVER NULL +def information_schema PROCESSLIST TID 18 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(4) NEVER NULL def information_schema PROCESSLIST TIME 6 0 NO int NULL NULL 10 0 NULL NULL NULL int(7) NEVER NULL def information_schema PROCESSLIST TIME_MS 9 0.000 NO decimal NULL NULL 22 3 NULL NULL NULL decimal(22,3) NEVER NULL def information_schema PROCESSLIST USER 2 '' NO varchar 128 384 NULL NULL NULL utf8 utf8_general_ci varchar(128) NEVER NULL @@ -797,6 +798,7 @@ NULL information_schema PROCESSLIST STAGE tinyint NULL NULL NULL NULL tinyint(2) NULL information_schema PROCESSLIST MAX_STAGE tinyint NULL NULL NULL NULL tinyint(2) NULL information_schema PROCESSLIST PROGRESS decimal NULL NULL NULL NULL decimal(7,3) NULL information_schema PROCESSLIST MEMORY_USED bigint NULL NULL NULL NULL bigint(7) +NULL information_schema PROCESSLIST MAX_MEMORY_USED bigint NULL NULL NULL NULL bigint(7) NULL information_schema PROCESSLIST EXAMINED_ROWS int NULL NULL NULL NULL int(7) NULL information_schema PROCESSLIST QUERY_ID bigint NULL NULL NULL NULL bigint(4) 1.0000 information_schema PROCESSLIST INFO_BINARY blob 65535 65535 NULL NULL blob diff --git a/mysql-test/suite/funcs_1/r/processlist_priv_no_prot.result b/mysql-test/suite/funcs_1/r/processlist_priv_no_prot.result index 6680e045558..5dd432714ab 100644 --- a/mysql-test/suite/funcs_1/r/processlist_priv_no_prot.result +++ b/mysql-test/suite/funcs_1/r/processlist_priv_no_prot.result @@ -37,6 +37,7 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, @@ -44,12 +45,12 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( ) DEFAULT CHARSET=utf8 SHOW processlist; Id User Host db Command Time State Info Progress -ID root HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID root HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS SELECT * FROM processlist ORDER BY id; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID root HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID root HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id; ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY ID root HOST_NAME information_schema Query TIME Filling schema table SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id @@ -116,6 +117,7 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, @@ -123,10 +125,10 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( ) DEFAULT CHARSET=utf8 SHOW processlist; Id User Host db Command Time State Info Progress -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM processlist ORDER BY id; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id; ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id @@ -188,10 +190,10 @@ Grants for ddicttestuser1@localhost GRANT PROCESS ON *.* TO 'ddicttestuser1'@'localhost' IDENTIFIED BY PASSWORD '*22DA61451703738F203CDB9DB041ACBA1F4760B1' SHOW processlist; Id User Host db Command Time State Info Progress -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID #################################################################################### 4.2 New connection con101 (ddicttestuser1 with PROCESS privilege) SHOW/SELECT shows all processes/threads. @@ -204,12 +206,12 @@ SHOW processlist; Id User Host db Command Time State Info Progress ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 5 Grant PROCESS privilege to anonymous user. connection default (user=root) @@ -231,13 +233,13 @@ Id User Host db Command Time State Info Progress ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 6 Revoke PROCESS privilege from ddicttestuser1 connection default (user=root) @@ -257,12 +259,12 @@ SHOW processlist; Id User Host db Command Time State Info Progress ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 7 Revoke PROCESS privilege from anonymous user connection default (user=root) @@ -279,9 +281,9 @@ SHOW GRANTS FOR ''@'localhost'; Grants for @localhost GRANT USAGE ON *.* TO ''@'localhost' SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 8 Grant SUPER (does not imply PROCESS) privilege to ddicttestuser1 connection default (user=root) @@ -301,13 +303,13 @@ Id User Host db Command Time State Info Progress ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 9 Revoke SUPER privilege from user ddicttestuser1 connection default (user=root) @@ -329,14 +331,14 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 10 Grant SUPER privilege with grant option to user ddicttestuser1. connection default (user=root) @@ -388,20 +390,20 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser2 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser2 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser2 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser2 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 11 User ddicttestuser1 revokes PROCESS privilege from user ddicttestuser2 connection ddicttestuser1; @@ -419,11 +421,11 @@ GRANT USAGE ON *.* TO 'ddicttestuser2'@'localhost' IDENTIFIED BY PASSWORD '*22DA SHOW processlist; Id User Host db Command Time State Info Progress ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser2 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser2 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser2 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser2 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 11.2 Revoke SUPER,PROCESS,GRANT OPTION privilege from user ddicttestuser1 connection default (user=root) @@ -450,17 +452,17 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 12 Revoke the SELECT privilege from user ddicttestuser1 connection default (user=root) @@ -488,18 +490,18 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Query TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 12.2 Revoke only the SELECT privilege on the information_schema from ddicttestuser1. connection default (user=root) diff --git a/mysql-test/suite/funcs_1/r/processlist_priv_ps.result b/mysql-test/suite/funcs_1/r/processlist_priv_ps.result index 09f9d231144..6ade94dbe58 100644 --- a/mysql-test/suite/funcs_1/r/processlist_priv_ps.result +++ b/mysql-test/suite/funcs_1/r/processlist_priv_ps.result @@ -37,6 +37,7 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, @@ -44,12 +45,12 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( ) DEFAULT CHARSET=utf8 SHOW processlist; Id User Host db Command Time State Info Progress -ID root HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID root HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS SELECT * FROM processlist ORDER BY id; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID root HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID root HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id; ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY ID root HOST_NAME information_schema Execute TIME Filling schema table SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id @@ -116,6 +117,7 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, @@ -123,10 +125,10 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( ) DEFAULT CHARSET=utf8 SHOW processlist; Id User Host db Command Time State Info Progress -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM processlist ORDER BY id; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM processlist ORDER BY id TID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id; ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS, STAGE, MAX_STAGE, PROGRESS, MEMORY_USED, EXAMINED_ROWS, QUERY_ID, INFO_BINARY FROM processlist ORDER BY id @@ -188,10 +190,10 @@ Grants for ddicttestuser1@localhost GRANT PROCESS ON *.* TO 'ddicttestuser1'@'localhost' IDENTIFIED BY PASSWORD '*22DA61451703738F203CDB9DB041ACBA1F4760B1' SHOW processlist; Id User Host db Command Time State Info Progress -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID #################################################################################### 4.2 New connection con101 (ddicttestuser1 with PROCESS privilege) SHOW/SELECT shows all processes/threads. @@ -204,12 +206,12 @@ SHOW processlist; Id User Host db Command Time State Info Progress ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 5 Grant PROCESS privilege to anonymous user. connection default (user=root) @@ -231,13 +233,13 @@ Id User Host db Command Time State Info Progress ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 6 Revoke PROCESS privilege from ddicttestuser1 connection default (user=root) @@ -257,12 +259,12 @@ SHOW processlist; Id User Host db Command Time State Info Progress ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 7 Revoke PROCESS privilege from anonymous user connection default (user=root) @@ -279,9 +281,9 @@ SHOW GRANTS FOR ''@'localhost'; Grants for @localhost GRANT USAGE ON *.* TO ''@'localhost' SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 8 Grant SUPER (does not imply PROCESS) privilege to ddicttestuser1 connection default (user=root) @@ -301,13 +303,13 @@ Id User Host db Command Time State Info Progress ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 9 Revoke SUPER privilege from user ddicttestuser1 connection default (user=root) @@ -329,14 +331,14 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 10 Grant SUPER privilege with grant option to user ddicttestuser1. connection default (user=root) @@ -388,20 +390,20 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser2 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser2 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser2 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser2 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 11 User ddicttestuser1 revokes PROCESS privilege from user ddicttestuser2 connection ddicttestuser1; @@ -419,11 +421,11 @@ GRANT USAGE ON *.* TO 'ddicttestuser2'@'localhost' IDENTIFIED BY PASSWORD '*22DA SHOW processlist; Id User Host db Command Time State Info Progress ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser2 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser2 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser2 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser2 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 11.2 Revoke SUPER,PROCESS,GRANT OPTION privilege from user ddicttestuser1 connection default (user=root) @@ -450,17 +452,17 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 12 Revoke the SELECT privilege from user ddicttestuser1 connection default (user=root) @@ -488,18 +490,18 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS -ID ddicttestuser1 HOST_NAME information_schema Query TIME init SHOW processlist TIME_MS +ID ddicttestuser1 HOST_NAME information_schema Query TIME Init SHOW processlist TIME_MS SELECT * FROM information_schema.processlist; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID -ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY ROWS QUERY_ID NULL TID +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +ID ddicttestuser1 HOST_NAME information_schema Execute TIME Filling schema table SELECT * FROM information_schema.processlist TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID SELECT * FROM information_schema.processlist TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID +ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS 0 0 0.000 MEMORY MAX_MEMORY ROWS QUERY_ID NULL TID #################################################################################### 12.2 Revoke only the SELECT privilege on the information_schema from ddicttestuser1. connection default (user=root) diff --git a/mysql-test/suite/funcs_1/r/processlist_val_no_prot.result b/mysql-test/suite/funcs_1/r/processlist_val_no_prot.result index f935f7770b8..ad109501f98 100644 --- a/mysql-test/suite/funcs_1/r/processlist_val_no_prot.result +++ b/mysql-test/suite/funcs_1/r/processlist_val_no_prot.result @@ -25,6 +25,7 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, @@ -34,11 +35,11 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( #-------------------------------------------------------------------------- SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> root <HOST_NAME> test Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> root <HOST_NAME> test Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> root <HOST_NAME> test Query <TIME> init SHOW FULL PROCESSLIST <TIME_MS> +<ID> root <HOST_NAME> test Query <TIME> Init SHOW FULL PROCESSLIST <TIME_MS> SET @default_id = CONNECTION_ID(); SELECT COUNT(*) = 1 AS "Expect exact one connection with this id" FROM INFORMATION_SCHEMA.PROCESSLIST WHERE ID = @default_id; @@ -79,12 +80,12 @@ connection default; # Poll till the connection con1 is in state COMMAND = 'Sleep'. SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema Query <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema Query <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> root <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> root <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 <ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL 0.000 SELECT ID,TIME INTO @test_user_con1_id,@time FROM INFORMATION_SCHEMA.PROCESSLIST WHERE COMMAND = 'Sleep' AND USER = 'test_user'; @@ -112,11 +113,11 @@ Expect 1 connection con1; SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> test_user <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> test_user <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 # Ensure that the user test_user sees all connections with his username. #---------------------------------------------------------------------------- @@ -126,13 +127,13 @@ connection default; connection con2; SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress <ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL 0.000 -<ID> test_user <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> test_user <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 connection default; SELECT ID INTO @test_user_con2_id FROM INFORMATION_SCHEMA.PROCESSLIST WHERE ID <> @test_user_con1_id @@ -149,13 +150,13 @@ connection default; # Poll till connection con2 is in state 'User sleep'. SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Query <TIME> User sleep SELECT sleep(10), 17 <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT sleep(10), 17 <TID> -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Query <TIME> User sleep SELECT sleep(10), 17 <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT sleep(10), 17 <TID> +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> root <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> root <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 <ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL 0.000 <ID> test_user <HOST_NAME> information_schema Query <TIME> User sleep SELECT sleep(10), 17 0.000 SELECT STATE, TIME, INFO INTO @state, @time, @info @@ -192,10 +193,10 @@ connection default; # Poll till INFO is no more NULL and State = 'Waiting for table metadata lock'. SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Query <TIME> Waiting for table metadata lock SELECT COUNT(*) FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT COUNT(*) FROM test.t1 <TID> -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Query <TIME> Waiting for table metadata lock SELECT COUNT(*) FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT COUNT(*) FROM test.t1 <TID> +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema Query <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> UNLOCK TABLES; connection con2; # Pull("reap") the result set from the statement executed with "send". @@ -222,10 +223,10 @@ connection default; # SHOW PROCESSLIST statement truncated after 100 char SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TID> -<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TID> +<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress <ID> root <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SHOW FULL PROCESSLIST 0.000 diff --git a/mysql-test/suite/funcs_1/r/processlist_val_ps.result b/mysql-test/suite/funcs_1/r/processlist_val_ps.result index 48fcc0a5553..169053cb6be 100644 --- a/mysql-test/suite/funcs_1/r/processlist_val_ps.result +++ b/mysql-test/suite/funcs_1/r/processlist_val_ps.result @@ -25,6 +25,7 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( `MAX_STAGE` tinyint(2) NOT NULL DEFAULT 0, `PROGRESS` decimal(7,3) NOT NULL DEFAULT 0.000, `MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, + `MAX_MEMORY_USED` bigint(7) NOT NULL DEFAULT 0, `EXAMINED_ROWS` int(7) NOT NULL DEFAULT 0, `QUERY_ID` bigint(4) NOT NULL DEFAULT 0, `INFO_BINARY` blob DEFAULT NULL, @@ -34,11 +35,11 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` ( #-------------------------------------------------------------------------- SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> root <HOST_NAME> test Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> root <HOST_NAME> test Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> root <HOST_NAME> test Query <TIME> init SHOW FULL PROCESSLIST <TIME_MS> +<ID> root <HOST_NAME> test Query <TIME> Init SHOW FULL PROCESSLIST <TIME_MS> SET @default_id = CONNECTION_ID(); SELECT COUNT(*) = 1 AS "Expect exact one connection with this id" FROM INFORMATION_SCHEMA.PROCESSLIST WHERE ID = @default_id; @@ -79,12 +80,12 @@ connection default; # Poll till the connection con1 is in state COMMAND = 'Sleep'. SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema Execute <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema Execute <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> root <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> root <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 <ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL 0.000 SELECT ID,TIME INTO @test_user_con1_id,@time FROM INFORMATION_SCHEMA.PROCESSLIST WHERE COMMAND = 'Sleep' AND USER = 'test_user'; @@ -112,11 +113,11 @@ Expect 1 connection con1; SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> test_user <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> test_user <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 # Ensure that the user test_user sees all connections with his username. #---------------------------------------------------------------------------- @@ -126,13 +127,13 @@ connection default; connection con2; SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress <ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL 0.000 -<ID> test_user <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> test_user <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 connection default; SELECT ID INTO @test_user_con2_id FROM INFORMATION_SCHEMA.PROCESSLIST WHERE ID <> @test_user_con1_id @@ -149,13 +150,13 @@ connection default; # Poll till connection con2 is in state 'User sleep'. SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Query <TIME> User sleep SELECT sleep(10), 17 <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT sleep(10), 17 <TID> -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Query <TIME> User sleep SELECT sleep(10), 17 <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT sleep(10), 17 <TID> +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress -<ID> root <HOST_NAME> information_schema Query <TIME> init SHOW FULL PROCESSLIST 0.000 +<ID> root <HOST_NAME> information_schema Query <TIME> Init SHOW FULL PROCESSLIST 0.000 <ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL 0.000 <ID> test_user <HOST_NAME> information_schema Query <TIME> User sleep SELECT sleep(10), 17 0.000 SELECT STATE, TIME, INFO INTO @state, @time, @info @@ -192,10 +193,10 @@ connection default; # Poll till INFO is no more NULL and State = 'Waiting for table metadata lock'. SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema Query <TIME> Waiting for table metadata lock SELECT COUNT(*) FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT COUNT(*) FROM test.t1 <TID> -<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema Query <TIME> Waiting for table metadata lock SELECT COUNT(*) FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT COUNT(*) FROM test.t1 <TID> +<ID> test_user <HOST_NAME> information_schema Sleep <TIME> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema Execute <TIME> Filling schema table SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> UNLOCK TABLES; connection con2; # Pull("reap") the result set from the statement executed with "send". @@ -222,10 +223,10 @@ connection default; # SHOW PROCESSLIST statement truncated after 100 char SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; -ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID -<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TID> -<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> NULL <TID> -<ID> root <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> +ID USER HOST DB COMMAND TIME STATE INFO TIME_MS STAGE MAX_STAGE PROGRESS MEMORY_USED MAX_MEMORY_USED EXAMINED_ROWS QUERY_ID INFO_BINARY TID +<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT count(*),'BEGIN-This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.This is the representative of a very long statement.-END' AS "Long string" FROM test.t1 <TID> +<ID> test_user <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> NULL <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> NULL <TID> +<ID> root <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TIME_MS> 0 0 0.000 <MEMORY> <MAX_MEMORY> <ROWS> <QUERY_ID> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST <TID> SHOW FULL PROCESSLIST; Id User Host db Command Time State Info Progress <ID> root <HOST_NAME> information_schema <COMMAND> <TIME> <STATE> SHOW FULL PROCESSLIST 0.000 diff --git a/mysql-test/suite/galera/disabled.def b/mysql-test/suite/galera/disabled.def index 423c83208f8..193b9f87d56 100644 --- a/mysql-test/suite/galera/disabled.def +++ b/mysql-test/suite/galera/disabled.def @@ -56,3 +56,7 @@ MW-284 : MDEV-13549 Galera test failures 10.1 galera_as_slave : MDEV-13549 Galera test failures 10.1 galera_var_innodb_disallow_writes : MDEV-10949 galera_kill_applier : race condition at the start of the test +GAL-480 : "Lost connection to MySQL" +MW-328A : "Found wrong usage of mutex" +MW-328B : "Found wrong usage of mutex" +MW-328C : "Found wrong usage of mutex" diff --git a/mysql-test/suite/galera/t/galera_gcs_fc_limit.test b/mysql-test/suite/galera/t/galera_gcs_fc_limit.test index 61576a39316..5d341533161 100644 --- a/mysql-test/suite/galera/t/galera_gcs_fc_limit.test +++ b/mysql-test/suite/galera/t/galera_gcs_fc_limit.test @@ -36,7 +36,7 @@ INSERT INTO t1 VALUES (5); --let $galera_server_number = 1 --source include/galera_connect.inc --connection node_1a ---let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE STATE = 'query end' AND INFO = 'INSERT INTO t1 VALUES (5)'; +--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE STATE = 'Commit' AND INFO = 'INSERT INTO t1 VALUES (5)'; --source include/wait_condition.inc --connection node_2 diff --git a/mysql-test/suite/galera/t/galera_var_innodb_disallow_writes.test b/mysql-test/suite/galera/t/galera_var_innodb_disallow_writes.test index c08483b63ad..3606075e7a8 100644 --- a/mysql-test/suite/galera/t/galera_var_innodb_disallow_writes.test +++ b/mysql-test/suite/galera/t/galera_var_innodb_disallow_writes.test @@ -18,7 +18,7 @@ SET GLOBAL innodb_disallow_writes=ON; --send INSERT INTO t1 VALUES (1); --connection node_1a -let $wait_condition = SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE INFO = 'INSERT INTO t1 VALUES (1)' AND State = 'query end'; +let $wait_condition = SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE INFO = 'INSERT INTO t1 VALUES (1)' AND State = 'Commit'; --source include/wait_condition.inc SET GLOBAL innodb_disallow_writes=OFF; diff --git a/mysql-test/suite/gcol/r/innodb_virtual_basic.result b/mysql-test/suite/gcol/r/innodb_virtual_basic.result index d48292a6577..0c8880a4799 100644 --- a/mysql-test/suite/gcol/r/innodb_virtual_basic.result +++ b/mysql-test/suite/gcol/r/innodb_virtual_basic.result @@ -960,9 +960,12 @@ INSERT INTO t1 VALUES (11, 3, DEFAULT, 'mm'); INSERT INTO t1 VALUES (18, 1, DEFAULT, 'mm'); INSERT INTO t1 VALUES (28, 1, DEFAULT, 'mm'); ALTER TABLE t1 ADD INDEX idx12 (c) , FORCE, LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED +ALTER TABLE t1 ADD INDEX idx12 (c), LOCK=NONE; ALTER TABLE t1 DROP COLUMN h, ADD INDEX idx (c) , FORCE, LOCK=NONE; -Warnings: -Note 1831 Duplicate index `idx`. This is deprecated and will be disallowed in a future release +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED +ALTER TABLE t1 DROP COLUMN h, ADD INDEX idx (c), LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED DROP TABLE t1 ; CREATE TABLE t1 (a INT, b INT, c INT GENERATED ALWAYS AS(a+b), d INT GENERATED ALWAYS AS(a+b), h VARCHAR(10)); INSERT INTO t1 VALUES (11, 3, DEFAULT, DEFAULT, 'mm'); @@ -1322,6 +1325,8 @@ t CREATE TABLE `t` ( ALTER TABLE t ADD COLUMN i INT GENERATED ALWAYS AS(a+a+b), ADD COLUMN j INT, ALGORITHM=INPLACE; ERROR 0A000: ALGORITHM=INPLACE is not supported. Reason: INPLACE ADD or DROP of virtual columns cannot be combined with other ALTER TABLE actions. Try ALGORITHM=COPY ALTER TABLE t ADD INDEX (x), ADD COLUMN j INT, ALGORITHM=INPLACE, LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED +ALTER TABLE t ADD INDEX (x), ADD COLUMN j INT, ALGORITHM=INPLACE; SHOW CREATE TABLE t; Table Create Table t CREATE TABLE `t` ( diff --git a/mysql-test/suite/gcol/r/innodb_virtual_debug.result b/mysql-test/suite/gcol/r/innodb_virtual_debug.result index af220c7cd17..7774c6c347c 100644 --- a/mysql-test/suite/gcol/r/innodb_virtual_debug.result +++ b/mysql-test/suite/gcol/r/innodb_virtual_debug.result @@ -53,46 +53,8 @@ a b c h 18 1 19 mm 28 1 29 mm NULL NULL NULL mx -SET DEBUG_SYNC = 'innodb_inplace_alter_table_enter SIGNAL start_create WAIT_FOR go_ahead'; -ALTER TABLE t ADD COLUMN x INT; -connection con1; -SET DEBUG_SYNC = 'now WAIT_FOR start_create'; -start transaction; -update t set a=1 where a = 0; -rollback; -start transaction; -delete from t; -insert into t values(1,null,default,null); -rollback; -start transaction; -update t set b=b+1; -rollback; -SET DEBUG_SYNC = 'now SIGNAL go_ahead'; -connection default; -check table t; -Table Op Msg_type Msg_text -test.t check status OK -SELECT c FROM t; -c -NULL -3 -19 -29 -SET DEBUG_SYNC = 'innodb_inplace_alter_table_enter SIGNAL start_create WAIT_FOR go_ahead'; -ALTER TABLE t ADD COLUMN x2 INT; -connection con1; -SET DEBUG_SYNC = 'now WAIT_FOR start_create'; -start transaction; -DELETE FROM t WHERE a = 0; -ROLLBACK; -DELETE FROM t WHERE a = 0; -SET DEBUG_SYNC = 'now SIGNAL go_ahead'; -connection default; -SELECT c FROM t; -c -NULL -19 -29 +ALTER TABLE t FORCE, LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED disconnect con1; DROP TABLE t; SET DEBUG_SYNC = 'RESET'; @@ -123,135 +85,4 @@ NULL 19 29 DROP TABLE t; -# -# Bug#22018532 ASSERTION WHEN ONLINE REAPPLY REBUILD LOG ON -# MULTIPLE INDEXED VIRTUAL COLUMNS -# -create table t ( -a int as (1) virtual, -b int, -c int as (1) virtual, -unique(b), -unique(c), -key(a) -) engine=innodb; -insert ignore into t values(); -SET DEBUG_SYNC = 'innodb_inplace_alter_table_enter SIGNAL start_create WAIT_FOR go_ahead'; -optimize table t; -connect con1,localhost,root,,; -SET DEBUG_SYNC = 'now WAIT_FOR start_create'; -insert ignore into t values(); -Warnings: -Warning 1062 Duplicate entry '1' for key 'c' -SET DEBUG_SYNC = 'now SIGNAL go_ahead'; -connection default; -/* connection default */ optimize table t; -Table Op Msg_type Msg_text -test.t optimize note Table does not support optimize, doing recreate + analyze instead -test.t optimize error Duplicate entry '1' for key 'a' -test.t optimize status Operation failed -Warnings: -Error 1062 Duplicate entry '1' for key 'a' -SELECT c FROM t; -c -1 -SHOW CREATE TABLE t; -Table Create Table -t CREATE TABLE `t` ( - `a` int(11) GENERATED ALWAYS AS (1) VIRTUAL, - `b` int(11) DEFAULT NULL, - `c` int(11) GENERATED ALWAYS AS (1) VIRTUAL, - UNIQUE KEY `b` (`b`), - UNIQUE KEY `c` (`c`), - KEY `a` (`a`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 -SELECT * FROM t; -a b c -1 NULL 1 -DROP TABLE t; -CREATE TABLE t (a INT, b INT, c INT GENERATED ALWAYS AS(a+b), h VARCHAR(10)); -INSERT INTO t VALUES (11, 3, DEFAULT, 'mm'); -INSERT INTO t VALUES (18, 1, DEFAULT, 'mm'); -INSERT INTO t VALUES (28, 1, DEFAULT, 'mm'); -INSERT INTO t VALUES (null, null, DEFAULT, 'mm'); -CREATE INDEX idx ON t(c); -SET DEBUG_SYNC = 'innodb_inplace_alter_table_enter SIGNAL start_rebuild WAIT_FOR go_ahead'; -optimize table t; -connection con1; -SET DEBUG_SYNC = 'now WAIT_FOR start_rebuild'; -INSERT INTO t VALUES (48, 2, DEFAULT, 'xx'); -INSERT INTO t VALUES (68, 3, DEFAULT, 'sx'); -SET DEBUG_SYNC = 'now SIGNAL go_ahead'; -connection default; -/* connection default */ optimize table t; -Table Op Msg_type Msg_text -test.t optimize note Table does not support optimize, doing recreate + analyze instead -test.t optimize status OK -SELECT c FROM t; -c -NULL -14 -19 -29 -50 -71 -disconnect con1; -DROP TABLE t; -# -# Bug#22951879 - ASSERTS RELATED TO ONLINE DDL AND GCOL -# -create table ibstd_14 (a int not null, d int not null, b varchar(198) not null, c char(181), vadcol int as (a+length(d)) stored, vbcol char(2) as (substr(b,2,2)) virtual, vbidxcol char(3) as (substr(b,1,3)) virtual , index(d), index(a), index(vbidxcol), index(a,vbidxcol), index(vbidxcol,d), unique key (b(10), a, d), index(c(99), b(31)), index(b(5), c(10), a) , index(a,d)) engine=InnoDB stats_persistent=1 row_format=dynamic; -SET DEBUG_SYNC = 'innodb_inplace_alter_table_enter SIGNAL start_create WAIT_FOR go_ahead'; -alter table ibstd_14 row_format=compressed key_block_size=4,add key kn3 (d,c,vbcol,b); -connect con1,localhost,root; -SET DEBUG_SYNC = 'now WAIT_FOR start_create'; -insert into ibstd_14 (a,d,b,c, vbidxcol, vbcol) values ('118','6',repeat('oacolaarlruoacuroauurloraarucoooarcooauoolacalllaulrruarrrucruuooclacuoouccarrcoocloccorrrrarourcooalloocooccouruolaorlcaocualolc','1'),repeat('lolrrlalcocroraaulauclaaucolcorcuooaolruaooooluooooouaoorlarucorullalcrrloccououaooaorluorraclrcooouuolocoaolcocaaculruoocucoocoooauuolarcoraraocaoolulolarru','1'),default,default); -insert into ibstd_14 (a,d,b,c, vbidxcol, vbcol) values ('118','6', 'aaaa', 'lll', default, default); -update ibstd_14 set b='11111' where b='aaaa'; -SET DEBUG_SYNC = 'now SIGNAL go_ahead'; -connection default; -select * from ibstd_14; -a d b c vadcol vbcol vbidxcol -118 6 oacolaarlruoacuroauurloraarucoooarcooauoolacalllaulrruarrrucruuooclacuoouccarrcoocloccorrrrarourcooalloocooccouruolaorlcaocualolc lolrrlalcocroraaulauclaaucolcorcuooaolruaooooluooooouaoorlarucorullalcrrloccououaooaorluorraclrcooouuolocoaolcocaaculruoocucoocoooauuolarcoraraocaoolulolarru 119 ac oac -118 6 11111 lll 119 11 111 -select d,c,vbcol,b from ibstd_14; -d c vbcol b -6 lll 11 11111 -6 lolrrlalcocroraaulauclaaucolcorcuooaolruaooooluooooouaoorlarucorullalcrrloccououaooaorluorraclrcooouuolocoaolcocaaculruoocucoocoooauuolarcoraraocaoolulolarru ac oacolaarlruoacuroauurloraarucoooarcooauoolacalllaulrruarrrucruuooclacuoouccarrcoocloccorrrrarourcooalloocooccouruolaorlcaocualolc -select vbcol from ibstd_14; -vbcol -11 -ac -drop table ibstd_14; -# -# Bug#22018745 CORRUPTION IN ONLINE TABLE REBUILD -# (ROW_FORMAT=REDUNDANT, INDEXED VIRTUAL COLUMN) -# -CREATE TABLE t ( -b char(5) PRIMARY KEY, -v char(3) GENERATED ALWAYS AS (substr(b,1,3)) VIRTUAL, KEY(v) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=REDUNDANT; -connection con1; -SET DEBUG_SYNC='row_log_table_apply1_before SIGNAL prepared WAIT_FOR apply'; -OPTIMIZE TABLE t; -connection default; -SET DEBUG_SYNC='now WAIT_FOR prepared'; -INSERT INTO t SET b='fubar'; -BEGIN; -DELETE FROM t; -ROLLBACK; -SET DEBUG_SYNC='now SIGNAL apply'; -connection con1; -Table Op Msg_type Msg_text -test.t optimize note Table does not support optimize, doing recreate + analyze instead -test.t optimize status OK -connection default; -CHECK TABLE t; -Table Op Msg_type Msg_text -test.t check status OK -SELECT * FROM t; -b v -fubar fub -DROP TABLE t; -disconnect con1; SET DEBUG_SYNC = 'RESET'; diff --git a/mysql-test/suite/gcol/r/innodb_virtual_rebuild.result b/mysql-test/suite/gcol/r/innodb_virtual_rebuild.result new file mode 100644 index 00000000000..2e35698e47e --- /dev/null +++ b/mysql-test/suite/gcol/r/innodb_virtual_rebuild.result @@ -0,0 +1,98 @@ +CREATE TABLE t1 (j SERIAL, i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB; +CREATE TABLE t2 (j SERIAL, i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB +ROW_FORMAT=REDUNDANT; +CREATE TABLE t3 (i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB; +CREATE TABLE t4 (i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB +ROW_FORMAT=REDUNDANT; +INSERT INTO t4 SET i=1; +ALTER TABLE t4 ADD INDEX(v), LOCK=NONE; +ALTER TABLE t4 ADD COLUMN k INT, LOCK=NONE; +ALTER TABLE t4 DROP k, LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED +ALTER TABLE t4 DROP INDEX v, LOCK=NONE; +ALTER TABLE t4 DROP k, LOCK=NONE; +INSERT INTO t3 SET i=1; +ALTER TABLE t3 ADD INDEX(v), LOCK=NONE; +ALTER TABLE t3 ADD COLUMN k INT, LOCK=NONE; +ALTER TABLE t3 DROP k, LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED +ALTER TABLE t3 DROP INDEX v, LOCK=NONE; +ALTER TABLE t3 DROP k, LOCK=NONE; +INSERT INTO t2 SET i=1; +ALTER TABLE t2 ADD INDEX(v), LOCK=NONE; +ALTER TABLE t2 ADD COLUMN k INT, LOCK=NONE; +ALTER TABLE t2 DROP k, LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED +ALTER TABLE t2 DROP INDEX v, LOCK=NONE; +ALTER TABLE t2 DROP k, LOCK=NONE; +INSERT INTO t1 SET i=1; +ALTER TABLE t1 ADD INDEX(v), LOCK=NONE; +ALTER TABLE t1 ADD COLUMN k INT, LOCK=NONE; +ALTER TABLE t1 DROP k, LOCK=NONE; +ERROR 0A000: LOCK=NONE is not supported. Reason: online rebuild with indexed virtual columns. Try LOCK=SHARED +ALTER TABLE t1 DROP INDEX v, LOCK=NONE; +ALTER TABLE t1 DROP k, LOCK=NONE; +connect ddl,localhost,root,,test; +connection default; +connection ddl; +SET DEBUG_SYNC = 'row_log_table_apply1_before SIGNAL copied WAIT_FOR dml'; +ALTER TABLE t4 FORCE; +connection default; +SET DEBUG_SYNC = 'now WAIT_FOR copied'; +BEGIN; +UPDATE t4 SET i = 0; +ROLLBACK; +SET DEBUG_SYNC = 'now SIGNAL dml'; +connection ddl; +connection default; +SELECT * FROM t4; +i v +1 1 +DROP TABLE t4; +connection ddl; +SET DEBUG_SYNC = 'row_log_table_apply1_before SIGNAL copied WAIT_FOR dml'; +ALTER TABLE t3 FORCE; +connection default; +SET DEBUG_SYNC = 'now WAIT_FOR copied'; +BEGIN; +UPDATE t3 SET i = 0; +ROLLBACK; +SET DEBUG_SYNC = 'now SIGNAL dml'; +connection ddl; +connection default; +SELECT * FROM t3; +i v +1 1 +DROP TABLE t3; +connection ddl; +SET DEBUG_SYNC = 'row_log_table_apply1_before SIGNAL copied WAIT_FOR dml'; +ALTER TABLE t2 FORCE; +connection default; +SET DEBUG_SYNC = 'now WAIT_FOR copied'; +BEGIN; +UPDATE t2 SET i = 0; +ROLLBACK; +SET DEBUG_SYNC = 'now SIGNAL dml'; +connection ddl; +connection default; +SELECT * FROM t2; +j i v +1 1 1 +DROP TABLE t2; +connection ddl; +SET DEBUG_SYNC = 'row_log_table_apply1_before SIGNAL copied WAIT_FOR dml'; +ALTER TABLE t1 FORCE; +connection default; +SET DEBUG_SYNC = 'now WAIT_FOR copied'; +BEGIN; +UPDATE t1 SET i = 0; +ROLLBACK; +SET DEBUG_SYNC = 'now SIGNAL dml'; +connection ddl; +connection default; +SELECT * FROM t1; +j i v +1 1 1 +DROP TABLE t1; +disconnect ddl; +SET DEBUG_SYNC = 'RESET'; diff --git a/mysql-test/suite/gcol/t/innodb_virtual_basic.test b/mysql-test/suite/gcol/t/innodb_virtual_basic.test index e4e00c83536..aa2e1e00c8f 100644 --- a/mysql-test/suite/gcol/t/innodb_virtual_basic.test +++ b/mysql-test/suite/gcol/t/innodb_virtual_basic.test @@ -878,8 +878,13 @@ INSERT INTO t1 VALUES (18, 1, DEFAULT, 'mm'); INSERT INTO t1 VALUES (28, 1, DEFAULT, 'mm'); +--error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON ALTER TABLE t1 ADD INDEX idx12 (c) , FORCE, LOCK=NONE; +ALTER TABLE t1 ADD INDEX idx12 (c), LOCK=NONE; +--error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON ALTER TABLE t1 DROP COLUMN h, ADD INDEX idx (c) , FORCE, LOCK=NONE; +--error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON +ALTER TABLE t1 DROP COLUMN h, ADD INDEX idx (c), LOCK=NONE; DROP TABLE t1 ; @@ -1305,8 +1310,9 @@ SHOW CREATE TABLE t; --error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON ALTER TABLE t ADD COLUMN i INT GENERATED ALWAYS AS(a+a+b), ADD COLUMN j INT, ALGORITHM=INPLACE; -# Add an index along with adding a regular column is allowed. +--error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON ALTER TABLE t ADD INDEX (x), ADD COLUMN j INT, ALGORITHM=INPLACE, LOCK=NONE; +ALTER TABLE t ADD INDEX (x), ADD COLUMN j INT, ALGORITHM=INPLACE; SHOW CREATE TABLE t; # Online add an index on newly added virtual column is not allowed. diff --git a/mysql-test/suite/gcol/t/innodb_virtual_debug.test b/mysql-test/suite/gcol/t/innodb_virtual_debug.test index 7ccf0fb8fc7..3870f84e066 100644 --- a/mysql-test/suite/gcol/t/innodb_virtual_debug.test +++ b/mysql-test/suite/gcol/t/innodb_virtual_debug.test @@ -53,8 +53,11 @@ SELECT c FROM t; SHOW CREATE TABLE t; SELECT * FROM t; +--error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON +ALTER TABLE t FORCE, LOCK=NONE; +if (0) {# MDEV-14341 TODO: re-enable this SET DEBUG_SYNC = 'innodb_inplace_alter_table_enter SIGNAL start_create WAIT_FOR go_ahead'; ---send ALTER TABLE t ADD COLUMN x INT +--send ALTER TABLE t FORCE connection con1; @@ -78,7 +81,7 @@ check table t; SELECT c FROM t; SET DEBUG_SYNC = 'innodb_inplace_alter_table_enter SIGNAL start_create WAIT_FOR go_ahead'; ---send ALTER TABLE t ADD COLUMN x2 INT +--send ALTER TABLE t FORCE connection con1; @@ -93,6 +96,7 @@ connection default; reap; SELECT c FROM t; +} disconnect con1; DROP TABLE t; @@ -129,7 +133,7 @@ SELECT c FROM t; DROP TABLE t; - +if (0) {# MDEV-14341 TODO: re-enable LOCK=NONE and these tests --echo # --echo # Bug#22018532 ASSERTION WHEN ONLINE REAPPLY REBUILD LOG ON --echo # MULTIPLE INDEXED VIRTUAL COLUMNS @@ -264,7 +268,7 @@ SELECT * FROM t; DROP TABLE t; disconnect con1; - +} SET DEBUG_SYNC = 'RESET'; --source include/wait_until_count_sessions.inc diff --git a/mysql-test/suite/gcol/t/innodb_virtual_rebuild.test b/mysql-test/suite/gcol/t/innodb_virtual_rebuild.test new file mode 100644 index 00000000000..37ab82c46db --- /dev/null +++ b/mysql-test/suite/gcol/t/innodb_virtual_rebuild.test @@ -0,0 +1,50 @@ +--source include/have_innodb.inc +--source include/have_debug.inc +--source include/have_debug_sync.inc + +CREATE TABLE t1 (j SERIAL, i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB; +CREATE TABLE t2 (j SERIAL, i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB +ROW_FORMAT=REDUNDANT; +CREATE TABLE t3 (i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB; +CREATE TABLE t4 (i INT, v INT AS (i) VIRTUAL) ENGINE=InnoDB +ROW_FORMAT=REDUNDANT; + +let $n=4; +while ($n) +{ +eval INSERT INTO t$n SET i=1; +eval ALTER TABLE t$n ADD INDEX(v), LOCK=NONE; +eval ALTER TABLE t$n ADD COLUMN k INT, LOCK=NONE; +--error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON +eval ALTER TABLE t$n DROP k, LOCK=NONE; +eval ALTER TABLE t$n DROP INDEX v, LOCK=NONE; +eval ALTER TABLE t$n DROP k, LOCK=NONE; +dec $n; +} + +connect (ddl,localhost,root,,test); +connection default; + +let $n=4; +while ($n) +{ +connection ddl; +SET DEBUG_SYNC = 'row_log_table_apply1_before SIGNAL copied WAIT_FOR dml'; +send_eval ALTER TABLE t$n FORCE; + +connection default; +SET DEBUG_SYNC = 'now WAIT_FOR copied'; +BEGIN; +eval UPDATE t$n SET i = 0; +ROLLBACK; +SET DEBUG_SYNC = 'now SIGNAL dml'; + +connection ddl; +reap; +connection default; +eval SELECT * FROM t$n; +eval DROP TABLE t$n; +dec $n; +} +disconnect ddl; +SET DEBUG_SYNC = 'RESET'; diff --git a/mysql-test/suite/innodb/r/instant_alter_debug.result b/mysql-test/suite/innodb/r/instant_alter_debug.result index d3d75ff05d4..b1407aad1f3 100644 --- a/mysql-test/suite/innodb/r/instant_alter_debug.result +++ b/mysql-test/suite/innodb/r/instant_alter_debug.result @@ -35,7 +35,7 @@ ALTER TABLE t4 ADD COLUMN b INT; SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS LEFT JOIN t4 ON (NUMERIC_SCALE = pk); COUNT(*) -1733 +1734 SET DEBUG_SYNC='innodb_inplace_alter_table_enter SIGNAL enter WAIT_FOR delete'; ALTER TABLE t4 ADD COLUMN c INT; connect dml,localhost,root,,; diff --git a/mysql-test/suite/innodb/r/table_definition_cache_debug.result b/mysql-test/suite/innodb/r/table_definition_cache_debug.result index afceec731b0..2c2c6de44ae 100644 --- a/mysql-test/suite/innodb/r/table_definition_cache_debug.result +++ b/mysql-test/suite/innodb/r/table_definition_cache_debug.result @@ -1,3 +1,4 @@ +call mtr.add_suppression("InnoDB: innodb_open_files=13 is exceeded"); SET @save_tdc= @@GLOBAL.table_definition_cache; SET @save_toc= @@GLOBAL.table_open_cache; SET GLOBAL table_definition_cache= 400; diff --git a/mysql-test/suite/innodb/t/table_definition_cache_debug.test b/mysql-test/suite/innodb/t/table_definition_cache_debug.test index 57d64d6844e..1f3598d68c9 100644 --- a/mysql-test/suite/innodb/t/table_definition_cache_debug.test +++ b/mysql-test/suite/innodb/t/table_definition_cache_debug.test @@ -2,6 +2,8 @@ --source include/have_debug.inc --source include/have_debug_sync.inc +call mtr.add_suppression("InnoDB: innodb_open_files=13 is exceeded"); + SET @save_tdc= @@GLOBAL.table_definition_cache; SET @save_toc= @@GLOBAL.table_open_cache; diff --git a/mysql-test/suite/mariabackup/data_directory.result b/mysql-test/suite/mariabackup/data_directory.result new file mode 100644 index 00000000000..e7201918cbd --- /dev/null +++ b/mysql-test/suite/mariabackup/data_directory.result @@ -0,0 +1,13 @@ +CREATE TABLE t(a INT) ENGINE=InnoDB DATA DIRECTORY='table_data_dir'; +INSERT INTO t VALUES(1); +# xtrabackup backup +# xtrabackup prepare +DROP TABLE t; +# shutdown server +# remove datadir +# xtrabackup move back +# restart server +SELECT * FROM t; +a +1 +DROP TABLE t; diff --git a/mysql-test/suite/mariabackup/data_directory.test b/mysql-test/suite/mariabackup/data_directory.test new file mode 100644 index 00000000000..50789a34c78 --- /dev/null +++ b/mysql-test/suite/mariabackup/data_directory.test @@ -0,0 +1,23 @@ +let $table_data_dir=$MYSQLTEST_VARDIR/ddir; +mkdir $table_data_dir; +--replace_result $table_data_dir table_data_dir +EVAL CREATE TABLE t(a INT) ENGINE=InnoDB DATA DIRECTORY='$table_data_dir'; +INSERT INTO t VALUES(1); +echo # xtrabackup backup; +let $targetdir=$MYSQLTEST_VARDIR/tmp/backup; +--disable_result_log +exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$targetdir; +--enable_result_log +--source include/shutdown_mysqld.inc +echo # xtrabackup prepare; +--disable_result_log +exec $XTRABACKUP --prepare --target-dir=$targetdir; +--source include/start_mysqld.inc +DROP TABLE t; +rmdir $table_data_dir; +-- source include/restart_and_restore.inc +--enable_result_log +SELECT * FROM t; +DROP TABLE t; +rmdir $targetdir; +rmdir $table_data_dir; diff --git a/mysql-test/suite/mariabackup/incremental_backup.result b/mysql-test/suite/mariabackup/incremental_backup.result index eeedc751d83..cc7277bdde9 100644 --- a/mysql-test/suite/mariabackup/incremental_backup.result +++ b/mysql-test/suite/mariabackup/incremental_backup.result @@ -1,13 +1,22 @@ call mtr.add_suppression("InnoDB: New log files created"); -CREATE TABLE t(i INT) ENGINE INNODB; +CREATE TABLE t(i INT PRIMARY KEY) ENGINE INNODB; +BEGIN; +INSERT INTO t VALUES(2); +connect con1,localhost,root,,; +SET GLOBAL innodb_flush_log_at_trx_commit = 1; INSERT INTO t VALUES(1); # Create full backup , modify table, then create incremental/differential backup -INSERT INTO t VALUES(2); +BEGIN; +INSERT INTO t VALUES(0); +DELETE FROM t WHERE i=0; +connection default; +COMMIT; SELECT * FROM t; i 1 2 # Prepare full backup, apply incremental one +disconnect con1; # Restore and check results # shutdown server # remove datadir diff --git a/mysql-test/suite/mariabackup/incremental_backup.test b/mysql-test/suite/mariabackup/incremental_backup.test index b60b151563f..8fbfa701999 100644 --- a/mysql-test/suite/mariabackup/incremental_backup.test +++ b/mysql-test/suite/mariabackup/incremental_backup.test @@ -5,14 +5,22 @@ call mtr.add_suppression("InnoDB: New log files created"); let $basedir=$MYSQLTEST_VARDIR/tmp/backup; let $incremental_dir=$MYSQLTEST_VARDIR/tmp/backup_inc1; -CREATE TABLE t(i INT) ENGINE INNODB; +CREATE TABLE t(i INT PRIMARY KEY) ENGINE INNODB; +BEGIN; +INSERT INTO t VALUES(2); +connect (con1,localhost,root,,); +SET GLOBAL innodb_flush_log_at_trx_commit = 1; INSERT INTO t VALUES(1); echo # Create full backup , modify table, then create incremental/differential backup; --disable_result_log exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$basedir; --enable_result_log -INSERT INTO t VALUES(2); +BEGIN; +INSERT INTO t VALUES(0); +DELETE FROM t WHERE i=0; +connection default; +COMMIT; SELECT * FROM t; exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --ftwrl-wait-timeout=5 --ftwrl-wait-threshold=300 --ftwrl-wait-query-type=all --target-dir=$incremental_dir --incremental-basedir=$basedir; @@ -21,6 +29,7 @@ echo # Prepare full backup, apply incremental one; exec $XTRABACKUP --prepare --target-dir=$basedir; exec $XTRABACKUP --prepare --target-dir=$basedir --incremental-dir=$incremental_dir ; +disconnect con1; echo # Restore and check results; let $targetdir=$basedir; -- source include/restart_and_restore.inc diff --git a/mysql-test/suite/mariabackup/partition_datadir.opt b/mysql-test/suite/mariabackup/partition_datadir.opt new file mode 100644 index 00000000000..8a3240370eb --- /dev/null +++ b/mysql-test/suite/mariabackup/partition_datadir.opt @@ -0,0 +1 @@ +--partition
\ No newline at end of file diff --git a/mysql-test/suite/mariabackup/partition_datadir.result b/mysql-test/suite/mariabackup/partition_datadir.result new file mode 100644 index 00000000000..3fc5fe30907 --- /dev/null +++ b/mysql-test/suite/mariabackup/partition_datadir.result @@ -0,0 +1,22 @@ +CREATE TABLE t(i int) +ENGINE=InnoDB +PARTITION BY RANGE (i) +(PARTITION p0 VALUES LESS THAN (100), +PARTITION P1 VALUES LESS THAN (200), +PARTITION p2 VALUES LESS THAN (300) DATA DIRECTORY = 'MYSQLTEST_VARDIR/partitdata', +PARTITION p3 VALUES LESS THAN (400) DATA DIRECTORY = 'MYSQLTEST_VARDIR/partitdata', +PARTITION p4 VALUES LESS THAN MAXVALUE); +INSERT INTO t VALUES (1), (101), (201), (301), (401); +DROP TABLE t; +# shutdown server +# remove datadir +# xtrabackup move back +# restart server +SELECT * FROM t; +i +1 +101 +201 +301 +401 +DROP TABLE t; diff --git a/mysql-test/suite/mariabackup/partition_datadir.test b/mysql-test/suite/mariabackup/partition_datadir.test new file mode 100644 index 00000000000..882b0111267 --- /dev/null +++ b/mysql-test/suite/mariabackup/partition_datadir.test @@ -0,0 +1,24 @@ +let $targetdir=$MYSQLTEST_VARDIR/backup; +mkdir $targetdir; +mkdir $MYSQLTEST_VARDIR/partitdata; + +--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR +eval CREATE TABLE t(i int) +ENGINE=InnoDB +PARTITION BY RANGE (i) +(PARTITION p0 VALUES LESS THAN (100), + PARTITION P1 VALUES LESS THAN (200), + PARTITION p2 VALUES LESS THAN (300) DATA DIRECTORY = '$MYSQLTEST_VARDIR/partitdata', + PARTITION p3 VALUES LESS THAN (400) DATA DIRECTORY = '$MYSQLTEST_VARDIR/partitdata', + PARTITION p4 VALUES LESS THAN MAXVALUE); +INSERT INTO t VALUES (1), (101), (201), (301), (401); +exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$targetdir; +exec $XTRABACKUP --prepare --target-dir=$targetdir; +DROP TABLE t; +rmdir $MYSQLTEST_VARDIR/partitdata; +--source include/restart_and_restore.inc +--enable_result_log +SELECT * FROM t; +DROP TABLE t; +rmdir $targetdir; +rmdir $MYSQLTEST_VARDIR/partitdata; diff --git a/mysql-test/suite/perfschema/include/event_aggregate_setup.inc b/mysql-test/suite/perfschema/include/event_aggregate_setup.inc index 7dfefd25235..f116b09ff04 100644 --- a/mysql-test/suite/perfschema/include/event_aggregate_setup.inc +++ b/mysql-test/suite/perfschema/include/event_aggregate_setup.inc @@ -118,10 +118,10 @@ update performance_schema.setup_instruments set enabled='YES', timed='YES' 'idle'); update performance_schema.setup_instruments set enabled='YES', timed='YES' - where name in ('stage/sql/init', - 'stage/sql/checking permissions', + where name in ('stage/sql/Init', 'stage/sql/Init for update', + 'stage/sql/Checking permissions', 'stage/sql/Opening tables', - 'stage/sql/closing tables'); + 'stage/sql/Closing tables'); update performance_schema.setup_instruments set enabled='YES', timed='YES' where name in ('statement/sql/select', @@ -247,7 +247,7 @@ prepare dump_stages_account from "select user, host, event_name, count_star from performance_schema.events_stages_summary_by_account_by_event_name where user like \'user%\' - and event_name in ('stage/sql/init', + and event_name in ('stage/sql/init', 'stage/sql/Init for update', 'stage/sql/checking permissions', 'stage/sql/Opening tables', 'stage/sql/closing tables') @@ -257,7 +257,7 @@ prepare dump_stages_user from "select user, event_name, count_star from performance_schema.events_stages_summary_by_user_by_event_name where user like \'user%\' - and event_name in ('stage/sql/init', + and event_name in ('stage/sql/init', 'stage/sql/Init for update', 'stage/sql/checking permissions', 'stage/sql/Opening tables', 'stage/sql/closing tables') @@ -267,7 +267,7 @@ prepare dump_stages_host from "select host, event_name, count_star from performance_schema.events_stages_summary_by_host_by_event_name where host=\'localhost\' - and event_name in ('stage/sql/init', + and event_name in ('stage/sql/init', 'stage/sql/Init for update', 'stage/sql/checking permissions', 'stage/sql/Opening tables', 'stage/sql/closing tables') @@ -276,7 +276,7 @@ prepare dump_stages_host from prepare dump_stages_global from "select event_name, count_star from performance_schema.events_stages_summary_global_by_event_name - where event_name in ('stage/sql/init', + where event_name in ('stage/sql/init', 'stage/sql/Init for update', 'stage/sql/checking permissions', 'stage/sql/Opening tables', 'stage/sql/closing tables') @@ -285,7 +285,7 @@ prepare dump_stages_global from prepare dump_stages_history from "select event_name, count(event_name) from performance_schema.events_stages_history_long - where event_name in ('stage/sql/init', + where event_name in ('stage/sql/init', 'stage/sql/Init for update', 'stage/sql/checking permissions', 'stage/sql/Opening tables', 'stage/sql/closing tables') diff --git a/mysql-test/suite/perfschema/include/start_server_common.inc b/mysql-test/suite/perfschema/include/start_server_common.inc index 41dcfd8ecb5..8cbd40c2bc1 100644 --- a/mysql-test/suite/perfschema/include/start_server_common.inc +++ b/mysql-test/suite/perfschema/include/start_server_common.inc @@ -13,6 +13,7 @@ select count(*) from performance_schema.setup_timers; # Make sure we don't crash, no matter what the starting parameters are --disable_result_log +--disable_query_log select * from performance_schema.accounts; select * from performance_schema.cond_instances; select * from performance_schema.events_stages_current; @@ -66,11 +67,7 @@ select * from performance_schema.table_lock_waits_summary_by_table; select * from performance_schema.threads; select * from performance_schema.users; --enable_result_log - -# This has a stable output, printing the result: -show variables where - `Variable_name` != "performance_schema_max_statement_classes" and - `Variable_name` like "performance_schema%"; +--enable_query_log # This has an unrepeatable output, it does depends too much on # - the platform hardware (sizeof structures, padding) diff --git a/mysql-test/suite/perfschema/include/table_aggregate_load.inc b/mysql-test/suite/perfschema/include/table_aggregate_load.inc index ae548d11627..80c622d77be 100644 --- a/mysql-test/suite/perfschema/include/table_aggregate_load.inc +++ b/mysql-test/suite/perfschema/include/table_aggregate_load.inc @@ -29,10 +29,12 @@ truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; # Check the configuration is ok -show variables where - `Variable_name` != "performance_schema_max_statement_classes" and - `Variable_name` like "performance_schema%"; -show status like "performance_schema%"; +# We don't print this as it causes too many changes in test cases if +# one variable changes value +#show variables where +# `Variable_name` != "performance_schema_max_statement_classes" and +# `Variable_name` like "performance_schema%"; +#show status like "performance_schema%"; echo "================== Step 1 =================="; call dump_thread(); @@ -493,4 +495,3 @@ execute dump_objects_summary; # On test failures, may help to track the root cause show status like "performance_schema%"; - diff --git a/mysql-test/suite/perfschema/r/event_aggregate.result b/mysql-test/suite/perfschema/r/event_aggregate.result index 1f168cee431..9ab62329fc9 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate.result +++ b/mysql-test/suite/perfschema/r/event_aggregate.result @@ -32,15 +32,17 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -115,27 +117,31 @@ event_name count(event_name) wait/io/file/sql/query_log 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -228,33 +234,38 @@ wait/io/file/sql/query_log 4 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -351,41 +362,48 @@ wait/io/file/sql/query_log 5 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -499,41 +517,48 @@ wait/io/file/sql/query_log 8 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -651,49 +676,58 @@ wait/io/file/sql/query_log 9 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -828,49 +862,58 @@ wait/io/file/sql/query_log 12 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -1009,57 +1052,68 @@ wait/io/file/sql/query_log 13 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -1215,57 +1269,68 @@ wait/io/file/sql/query_log 16 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 24 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 20 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1412,57 +1477,68 @@ wait/synch/mutex/sql/LOCK_connection_count 1 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 25 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 21 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1607,57 +1683,68 @@ wait/synch/mutex/sql/LOCK_connection_count 2 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 26 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 22 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1799,57 +1886,68 @@ wait/synch/mutex/sql/LOCK_connection_count 3 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 27 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 23 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1988,57 +2086,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2178,57 +2287,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2367,57 +2487,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2556,57 +2687,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2745,57 +2887,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2934,57 +3087,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3123,57 +3287,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3312,57 +3487,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3501,57 +3687,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3690,57 +3887,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3879,57 +4087,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4068,57 +4287,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4257,57 +4487,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4446,57 +4687,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4635,57 +4887,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4824,57 +5087,68 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4999,39 +5273,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -5122,21 +5403,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -5207,21 +5491,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/event_aggregate_no_a.result b/mysql-test/suite/perfschema/r/event_aggregate_no_a.result index 7c9c3794d5f..ece0402335d 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate_no_a.result +++ b/mysql-test/suite/perfschema/r/event_aggregate_no_a.result @@ -32,15 +32,17 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -112,21 +114,24 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -211,27 +216,31 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -316,31 +325,36 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -437,31 +451,36 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -558,35 +577,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -695,35 +720,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -832,39 +863,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -985,39 +1023,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 24 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 20 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1129,39 +1174,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 25 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 21 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1271,39 +1323,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 26 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 22 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1410,39 +1469,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 27 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 23 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1546,39 +1612,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1683,39 +1756,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1819,39 +1899,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1955,39 +2042,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2091,39 +2185,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2227,39 +2328,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2363,39 +2471,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2499,39 +2614,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2635,39 +2757,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2771,39 +2900,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2907,39 +3043,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3043,39 +3186,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3179,39 +3329,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3315,39 +3472,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3451,39 +3615,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3587,39 +3758,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3723,39 +3901,46 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3845,21 +4030,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3929,21 +4117,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_h.result b/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_h.result index c8a9233e2a6..083e1bffdd2 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_h.result +++ b/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_h.result @@ -30,9 +30,10 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -95,17 +96,19 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -181,23 +184,26 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -273,27 +279,31 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -381,27 +391,31 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -489,31 +503,36 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -613,31 +632,36 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -737,35 +761,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -877,35 +907,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1008,35 +1044,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1137,35 +1179,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1263,35 +1311,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1386,35 +1440,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1510,35 +1570,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1633,35 +1699,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1756,35 +1828,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1879,35 +1957,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2002,35 +2086,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2125,35 +2215,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2248,35 +2344,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2371,35 +2473,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2494,35 +2602,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2617,35 +2731,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2740,35 +2860,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2863,35 +2989,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2986,35 +3118,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3109,35 +3247,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3232,35 +3376,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3355,35 +3505,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3466,15 +3622,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3537,15 +3695,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u.result b/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u.result index 95b46de4b57..c9b2b768691 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u.result +++ b/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u.result @@ -32,15 +32,17 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -109,15 +111,17 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -194,21 +198,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -281,21 +288,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -375,21 +385,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -465,21 +478,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -562,21 +578,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -655,21 +674,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -755,21 +777,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 24 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 20 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -846,21 +871,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 25 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 21 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -935,21 +963,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 26 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 22 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1021,21 +1052,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 27 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 23 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1104,21 +1138,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1188,21 +1225,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1271,21 +1311,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1354,21 +1397,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1437,21 +1483,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1520,21 +1569,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1603,21 +1655,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1686,21 +1741,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1769,21 +1827,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1852,21 +1913,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1935,21 +1999,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2018,21 +2085,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2101,21 +2171,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2184,21 +2257,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2267,21 +2343,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2350,21 +2429,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2433,21 +2515,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2516,21 +2601,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2599,21 +2687,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u_no_h.result b/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u_no_h.result index 2dda100704f..89443515f31 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u_no_h.result +++ b/mysql-test/suite/perfschema/r/event_aggregate_no_a_no_u_no_h.result @@ -30,9 +30,10 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -94,9 +95,10 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -166,15 +168,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -240,15 +244,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -321,15 +327,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -398,15 +406,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -482,15 +492,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -562,15 +574,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -649,15 +663,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -727,15 +743,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -803,15 +821,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -876,15 +896,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -946,15 +968,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1017,15 +1041,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1087,15 +1113,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1157,15 +1185,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1227,15 +1257,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1297,15 +1329,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1367,15 +1401,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1437,15 +1473,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1507,15 +1545,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1577,15 +1617,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1647,15 +1689,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1717,15 +1761,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1787,15 +1833,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1857,15 +1905,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1927,15 +1977,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1997,15 +2049,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2067,15 +2121,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2137,15 +2193,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2207,15 +2265,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/event_aggregate_no_h.result b/mysql-test/suite/perfschema/r/event_aggregate_no_h.result index 86edcf225c7..0ea5d90ea41 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate_no_h.result +++ b/mysql-test/suite/perfschema/r/event_aggregate_no_h.result @@ -30,9 +30,10 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -98,23 +99,26 @@ event_name count(event_name) wait/io/file/sql/query_log 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -198,29 +202,33 @@ wait/io/file/sql/query_log 4 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -308,37 +316,43 @@ wait/io/file/sql/query_log 5 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -443,37 +457,43 @@ wait/io/file/sql/query_log 8 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -582,45 +602,53 @@ wait/io/file/sql/query_log 9 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -746,45 +774,53 @@ wait/io/file/sql/query_log 12 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -914,53 +950,63 @@ wait/io/file/sql/query_log 13 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -1107,53 +1153,63 @@ wait/io/file/sql/query_log 16 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 6 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 5 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1291,53 +1347,63 @@ wait/synch/mutex/sql/LOCK_connection_count 1 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 6 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 5 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1473,53 +1539,63 @@ wait/synch/mutex/sql/LOCK_connection_count 2 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 6 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 5 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1652,53 +1728,63 @@ wait/synch/mutex/sql/LOCK_connection_count 3 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 6 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 5 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1828,53 +1914,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2005,53 +2101,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2181,53 +2287,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2357,53 +2473,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2533,53 +2659,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2709,53 +2845,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2885,53 +3031,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3061,53 +3217,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 3 -user1 stage/sql/closing tables 3 -user1 stage/sql/init 7 +user1 stage/sql/Checking permissions 3 +user1 stage/sql/Closing tables 4 +user1 stage/sql/Init 6 +user1 stage/sql/Init for update 1 user1 stage/sql/Opening tables 3 -user2 stage/sql/checking permissions 3 -user2 stage/sql/closing tables 3 -user2 stage/sql/init 7 +user2 stage/sql/Checking permissions 3 +user2 stage/sql/Closing tables 4 +user2 stage/sql/Init 6 +user2 stage/sql/Init for update 1 user2 stage/sql/Opening tables 3 -user3 stage/sql/checking permissions 3 -user3 stage/sql/closing tables 3 -user3 stage/sql/init 7 +user3 stage/sql/Checking permissions 3 +user3 stage/sql/Closing tables 4 +user3 stage/sql/Init 6 +user3 stage/sql/Init for update 1 user3 stage/sql/Opening tables 3 -user4 stage/sql/checking permissions 3 -user4 stage/sql/closing tables 3 -user4 stage/sql/init 7 +user4 stage/sql/Checking permissions 3 +user4 stage/sql/Closing tables 4 +user4 stage/sql/Init 6 +user4 stage/sql/Init for update 1 user4 stage/sql/Opening tables 3 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3237,53 +3403,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3413,53 +3589,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3589,53 +3775,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3765,53 +3961,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3941,53 +4147,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4117,53 +4333,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4293,53 +4519,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4469,53 +4705,63 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4631,35 +4877,41 @@ execute dump_stages_account; user host event_name count_star execute dump_stages_user; user event_name count_star -user1 stage/sql/checking permissions 0 -user1 stage/sql/closing tables 0 -user1 stage/sql/init 0 +user1 stage/sql/Checking permissions 0 +user1 stage/sql/Closing tables 0 +user1 stage/sql/Init 0 +user1 stage/sql/Init for update 0 user1 stage/sql/Opening tables 0 -user2 stage/sql/checking permissions 0 -user2 stage/sql/closing tables 0 -user2 stage/sql/init 0 +user2 stage/sql/Checking permissions 0 +user2 stage/sql/Closing tables 0 +user2 stage/sql/Init 0 +user2 stage/sql/Init for update 0 user2 stage/sql/Opening tables 0 -user3 stage/sql/checking permissions 0 -user3 stage/sql/closing tables 0 -user3 stage/sql/init 0 +user3 stage/sql/Checking permissions 0 +user3 stage/sql/Closing tables 0 +user3 stage/sql/Init 0 +user3 stage/sql/Init for update 0 user3 stage/sql/Opening tables 0 -user4 stage/sql/checking permissions 0 -user4 stage/sql/closing tables 0 -user4 stage/sql/init 0 +user4 stage/sql/Checking permissions 0 +user4 stage/sql/Closing tables 0 +user4 stage/sql/Init 0 +user4 stage/sql/Init for update 0 user4 stage/sql/Opening tables 0 execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4743,15 +4995,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -4815,15 +5069,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/event_aggregate_no_u.result b/mysql-test/suite/perfschema/r/event_aggregate_no_u.result index f5c4044f40f..52c674024bd 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate_no_u.result +++ b/mysql-test/suite/perfschema/r/event_aggregate_no_u.result @@ -32,15 +32,17 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -110,23 +112,26 @@ event_name count(event_name) wait/io/file/sql/query_log 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -209,29 +214,33 @@ wait/io/file/sql/query_log 4 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -314,33 +323,38 @@ wait/io/file/sql/query_log 5 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 3 -localhost stage/sql/closing tables 3 -localhost stage/sql/init 6 +localhost stage/sql/Checking permissions 3 +localhost stage/sql/Closing tables 4 +localhost stage/sql/Init 5 +localhost stage/sql/Init for update 1 localhost stage/sql/Opening tables 3 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -435,33 +449,38 @@ wait/io/file/sql/query_log 8 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -556,37 +575,43 @@ wait/io/file/sql/query_log 9 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 6 -localhost stage/sql/closing tables 6 -localhost stage/sql/init 12 +localhost stage/sql/Checking permissions 6 +localhost stage/sql/Closing tables 8 +localhost stage/sql/Init 10 +localhost stage/sql/Init for update 2 localhost stage/sql/Opening tables 6 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -693,37 +718,43 @@ wait/io/file/sql/query_log 12 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -830,41 +861,48 @@ wait/io/file/sql/query_log 13 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 9 -localhost stage/sql/closing tables 9 -localhost stage/sql/init 18 +localhost stage/sql/Checking permissions 9 +localhost stage/sql/Closing tables 12 +localhost stage/sql/Init 15 +localhost stage/sql/Init for update 3 localhost stage/sql/Opening tables 9 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -983,41 +1021,48 @@ wait/io/file/sql/query_log 16 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 24 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 20 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1127,41 +1172,48 @@ wait/synch/mutex/sql/LOCK_connection_count 1 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 25 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 21 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1269,41 +1321,48 @@ wait/synch/mutex/sql/LOCK_connection_count 2 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 26 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 22 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1408,41 +1467,48 @@ wait/synch/mutex/sql/LOCK_connection_count 3 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 27 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 23 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1544,41 +1610,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1681,41 +1754,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1817,41 +1897,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1953,41 +2040,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2089,41 +2183,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2225,41 +2326,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2361,41 +2469,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2497,41 +2612,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2633,41 +2755,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 12 -localhost stage/sql/closing tables 12 -localhost stage/sql/init 28 +localhost stage/sql/Checking permissions 12 +localhost stage/sql/Closing tables 16 +localhost stage/sql/Init 24 +localhost stage/sql/Init for update 4 localhost stage/sql/Opening tables 12 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2769,41 +2898,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2905,41 +3041,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3041,41 +3184,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3177,41 +3327,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3313,41 +3470,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3449,41 +3613,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3585,41 +3756,48 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3709,21 +3887,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3793,21 +3974,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3877,21 +4061,24 @@ execute dump_stages_user; user event_name count_star execute dump_stages_host; host event_name count_star -localhost stage/sql/checking permissions 0 -localhost stage/sql/closing tables 0 -localhost stage/sql/init 0 +localhost stage/sql/Checking permissions 0 +localhost stage/sql/Closing tables 0 +localhost stage/sql/Init 0 +localhost stage/sql/Init for update 0 localhost stage/sql/Opening tables 0 execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/event_aggregate_no_u_no_h.result b/mysql-test/suite/perfschema/r/event_aggregate_no_u_no_h.result index 5b40823e6ff..a493631d71f 100644 --- a/mysql-test/suite/perfschema/r/event_aggregate_no_u_no_h.result +++ b/mysql-test/suite/perfschema/r/event_aggregate_no_u_no_h.result @@ -30,9 +30,10 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -93,9 +94,10 @@ event_name count(event_name) wait/io/file/sql/query_log 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -103,9 +105,10 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) @@ -179,9 +182,10 @@ wait/io/file/sql/query_log 4 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -189,15 +193,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -271,13 +277,15 @@ wait/io/file/sql/query_log 5 wait/synch/rwlock/sql/LOCK_grant 1 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -285,15 +293,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 3 -stage/sql/closing tables 3 -stage/sql/init 6 +stage/sql/Checking permissions 3 +stage/sql/Closing tables 4 +stage/sql/Init 5 +stage/sql/Init for update 1 stage/sql/Opening tables 3 execute dump_statements_account; user host event_name count_star @@ -379,13 +389,15 @@ wait/io/file/sql/query_log 8 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -393,15 +405,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -487,17 +501,20 @@ wait/io/file/sql/query_log 9 wait/synch/rwlock/sql/LOCK_grant 2 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -505,15 +522,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 6 -stage/sql/closing tables 6 -stage/sql/init 12 +stage/sql/Checking permissions 6 +stage/sql/Closing tables 8 +stage/sql/Init 10 +stage/sql/Init for update 2 stage/sql/Opening tables 6 execute dump_statements_account; user host event_name count_star @@ -611,17 +630,20 @@ wait/io/file/sql/query_log 12 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -629,15 +651,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -735,21 +759,25 @@ wait/io/file/sql/query_log 13 wait/synch/rwlock/sql/LOCK_grant 3 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -757,15 +785,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 9 -stage/sql/closing tables 9 -stage/sql/init 18 +stage/sql/Checking permissions 9 +stage/sql/Closing tables 12 +stage/sql/Init 15 +stage/sql/Init for update 3 stage/sql/Opening tables 9 execute dump_statements_account; user host event_name count_star @@ -875,21 +905,25 @@ wait/io/file/sql/query_log 16 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 6 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 5 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -897,15 +931,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 24 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 20 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1006,21 +1042,25 @@ wait/synch/mutex/sql/LOCK_connection_count 1 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 6 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 5 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1028,15 +1068,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 25 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 21 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1135,21 +1177,25 @@ wait/synch/mutex/sql/LOCK_connection_count 2 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 6 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 5 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1157,15 +1203,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 26 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 22 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1261,21 +1309,25 @@ wait/synch/mutex/sql/LOCK_connection_count 3 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 6 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 5 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1283,15 +1335,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 27 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 23 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1384,21 +1438,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1406,15 +1464,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1508,21 +1568,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1530,15 +1594,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1631,21 +1697,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1653,15 +1723,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1754,21 +1826,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1776,15 +1852,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -1877,21 +1955,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -1899,15 +1981,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2000,21 +2084,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -2022,15 +2110,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2123,21 +2213,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 3 -user1 localhost stage/sql/closing tables 3 -user1 localhost stage/sql/init 7 +user1 localhost stage/sql/Checking permissions 3 +user1 localhost stage/sql/Closing tables 4 +user1 localhost stage/sql/Init 6 +user1 localhost stage/sql/Init for update 1 user1 localhost stage/sql/Opening tables 3 -user2 localhost stage/sql/checking permissions 3 -user2 localhost stage/sql/closing tables 3 -user2 localhost stage/sql/init 7 +user2 localhost stage/sql/Checking permissions 3 +user2 localhost stage/sql/Closing tables 4 +user2 localhost stage/sql/Init 6 +user2 localhost stage/sql/Init for update 1 user2 localhost stage/sql/Opening tables 3 -user3 localhost stage/sql/checking permissions 3 -user3 localhost stage/sql/closing tables 3 -user3 localhost stage/sql/init 7 +user3 localhost stage/sql/Checking permissions 3 +user3 localhost stage/sql/Closing tables 4 +user3 localhost stage/sql/Init 6 +user3 localhost stage/sql/Init for update 1 user3 localhost stage/sql/Opening tables 3 -user4 localhost stage/sql/checking permissions 3 -user4 localhost stage/sql/closing tables 3 -user4 localhost stage/sql/init 7 +user4 localhost stage/sql/Checking permissions 3 +user4 localhost stage/sql/Closing tables 4 +user4 localhost stage/sql/Init 6 +user4 localhost stage/sql/Init for update 1 user4 localhost stage/sql/Opening tables 3 execute dump_stages_user; user event_name count_star @@ -2145,15 +2239,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2246,21 +2342,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -2268,15 +2368,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2369,21 +2471,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -2391,15 +2497,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2492,21 +2600,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -2514,15 +2626,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2615,21 +2729,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -2637,15 +2755,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2738,21 +2858,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -2760,15 +2884,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2861,21 +2987,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -2883,15 +3013,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -2984,21 +3116,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -3006,15 +3142,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3107,21 +3245,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -3129,15 +3271,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3230,21 +3374,25 @@ wait/synch/mutex/sql/LOCK_connection_count 4 wait/synch/rwlock/sql/LOCK_grant 4 execute dump_stages_account; user host event_name count_star -user1 localhost stage/sql/checking permissions 0 -user1 localhost stage/sql/closing tables 0 -user1 localhost stage/sql/init 0 +user1 localhost stage/sql/Checking permissions 0 +user1 localhost stage/sql/Closing tables 0 +user1 localhost stage/sql/Init 0 +user1 localhost stage/sql/Init for update 0 user1 localhost stage/sql/Opening tables 0 -user2 localhost stage/sql/checking permissions 0 -user2 localhost stage/sql/closing tables 0 -user2 localhost stage/sql/init 0 +user2 localhost stage/sql/Checking permissions 0 +user2 localhost stage/sql/Closing tables 0 +user2 localhost stage/sql/Init 0 +user2 localhost stage/sql/Init for update 0 user2 localhost stage/sql/Opening tables 0 -user3 localhost stage/sql/checking permissions 0 -user3 localhost stage/sql/closing tables 0 -user3 localhost stage/sql/init 0 +user3 localhost stage/sql/Checking permissions 0 +user3 localhost stage/sql/Closing tables 0 +user3 localhost stage/sql/Init 0 +user3 localhost stage/sql/Init for update 0 user3 localhost stage/sql/Opening tables 0 -user4 localhost stage/sql/checking permissions 0 -user4 localhost stage/sql/closing tables 0 -user4 localhost stage/sql/init 0 +user4 localhost stage/sql/Checking permissions 0 +user4 localhost stage/sql/Closing tables 0 +user4 localhost stage/sql/Init 0 +user4 localhost stage/sql/Init for update 0 user4 localhost stage/sql/Opening tables 0 execute dump_stages_user; user event_name count_star @@ -3252,15 +3400,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3343,15 +3493,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3414,15 +3566,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star @@ -3485,15 +3639,17 @@ execute dump_stages_host; host event_name count_star execute dump_stages_global; event_name count_star -stage/sql/checking permissions 0 -stage/sql/closing tables 0 -stage/sql/init 0 +stage/sql/Checking permissions 0 +stage/sql/Closing tables 0 +stage/sql/Init 0 +stage/sql/Init for update 0 stage/sql/Opening tables 0 execute dump_stages_history; event_name count(event_name) -stage/sql/checking permissions 12 -stage/sql/closing tables 12 -stage/sql/init 28 +stage/sql/Checking permissions 12 +stage/sql/Closing tables 16 +stage/sql/Init 24 +stage/sql/Init for update 4 stage/sql/Opening tables 12 execute dump_statements_account; user host event_name count_star diff --git a/mysql-test/suite/perfschema/r/nesting.result b/mysql-test/suite/perfschema/r/nesting.result index e08aec94845..78126d93cc7 100644 --- a/mysql-test/suite/perfschema/r/nesting.result +++ b/mysql-test/suite/perfschema/r/nesting.result @@ -107,138 +107,152 @@ and (end_event_id <= @marker_end) ) all_events order by relative_event_id asc; relative_event_id relative_end_event_id event_name comment nesting_event_type relative_nesting_event_id -0 18 statement/sql/select select "MARKER_BEGIN" as marker NULL NULL -1 4 stage/sql/init (stage) STATEMENT 0 +0 20 statement/sql/select select "MARKER_BEGIN" as marker NULL NULL +1 4 stage/sql/Init (stage) STATEMENT 0 2 2 wait/io/socket/sql/client_connection recv STAGE 1 3 3 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 1 4 4 wait/io/file/sql/query_log write STAGE 1 -5 5 stage/sql/checking permissions (stage) STATEMENT 0 +5 5 stage/sql/Checking permissions (stage) STATEMENT 0 6 6 stage/sql/Opening tables (stage) STATEMENT 0 7 7 stage/sql/After opening tables (stage) STATEMENT 0 -8 8 stage/sql/init (stage) STATEMENT 0 -9 9 stage/sql/optimizing (stage) STATEMENT 0 -10 10 stage/sql/executing (stage) STATEMENT 0 -11 11 stage/sql/end (stage) STATEMENT 0 -12 12 stage/sql/query end (stage) STATEMENT 0 -13 13 stage/sql/closing tables (stage) STATEMENT 0 -14 14 stage/sql/freeing items (stage) STATEMENT 0 -15 15 wait/io/socket/sql/client_connection send STATEMENT 0 -16 16 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 0 -17 18 stage/sql/cleaning up (stage) STATEMENT 0 -18 18 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 17 -19 19 idle idle NULL NULL -20 38 statement/sql/select select "This is simple statement one" as payload NULL NULL -21 24 stage/sql/init (stage) STATEMENT 20 -22 22 wait/io/socket/sql/client_connection recv STAGE 21 -23 23 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 21 -24 24 wait/io/file/sql/query_log write STAGE 21 -25 25 stage/sql/checking permissions (stage) STATEMENT 20 -26 26 stage/sql/Opening tables (stage) STATEMENT 20 -27 27 stage/sql/After opening tables (stage) STATEMENT 20 -28 28 stage/sql/init (stage) STATEMENT 20 -29 29 stage/sql/optimizing (stage) STATEMENT 20 -30 30 stage/sql/executing (stage) STATEMENT 20 -31 31 stage/sql/end (stage) STATEMENT 20 -32 32 stage/sql/query end (stage) STATEMENT 20 -33 33 stage/sql/closing tables (stage) STATEMENT 20 -34 34 stage/sql/freeing items (stage) STATEMENT 20 -35 35 wait/io/socket/sql/client_connection send STATEMENT 20 -36 36 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 20 -37 38 stage/sql/cleaning up (stage) STATEMENT 20 -38 38 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 37 -39 39 idle idle NULL NULL -40 58 statement/sql/select select "This is simple statement two" as payload NULL NULL -41 44 stage/sql/init (stage) STATEMENT 40 -42 42 wait/io/socket/sql/client_connection recv STAGE 41 -43 43 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 41 -44 44 wait/io/file/sql/query_log write STAGE 41 -45 45 stage/sql/checking permissions (stage) STATEMENT 40 -46 46 stage/sql/Opening tables (stage) STATEMENT 40 -47 47 stage/sql/After opening tables (stage) STATEMENT 40 -48 48 stage/sql/init (stage) STATEMENT 40 -49 49 stage/sql/optimizing (stage) STATEMENT 40 -50 50 stage/sql/executing (stage) STATEMENT 40 -51 51 stage/sql/end (stage) STATEMENT 40 -52 52 stage/sql/query end (stage) STATEMENT 40 -53 53 stage/sql/closing tables (stage) STATEMENT 40 -54 54 stage/sql/freeing items (stage) STATEMENT 40 -55 55 wait/io/socket/sql/client_connection send STATEMENT 40 -56 56 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 40 -57 58 stage/sql/cleaning up (stage) STATEMENT 40 -58 58 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 57 -59 59 idle idle NULL NULL -60 77 statement/sql/select select "This is the first part of a multi query" as payload; +8 8 stage/sql/Init (stage) STATEMENT 0 +9 9 stage/sql/Optimizing (stage) STATEMENT 0 +10 10 stage/sql/Executing (stage) STATEMENT 0 +11 11 stage/sql/End of update loop (stage) STATEMENT 0 +12 12 stage/sql/Query end (stage) STATEMENT 0 +13 13 stage/sql/Commit (stage) STATEMENT 0 +14 14 stage/sql/Closing tables (stage) STATEMENT 0 +15 15 stage/sql/Starting cleanup (stage) STATEMENT 0 +16 16 stage/sql/Freeing items (stage) STATEMENT 0 +17 17 wait/io/socket/sql/client_connection send STATEMENT 0 +18 18 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 0 +19 20 stage/sql/Reset for next command (stage) STATEMENT 0 +20 20 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 19 +21 21 idle idle NULL NULL +22 42 statement/sql/select select "This is simple statement one" as payload NULL NULL +23 26 stage/sql/Init (stage) STATEMENT 22 +24 24 wait/io/socket/sql/client_connection recv STAGE 23 +25 25 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 23 +26 26 wait/io/file/sql/query_log write STAGE 23 +27 27 stage/sql/Checking permissions (stage) STATEMENT 22 +28 28 stage/sql/Opening tables (stage) STATEMENT 22 +29 29 stage/sql/After opening tables (stage) STATEMENT 22 +30 30 stage/sql/Init (stage) STATEMENT 22 +31 31 stage/sql/Optimizing (stage) STATEMENT 22 +32 32 stage/sql/Executing (stage) STATEMENT 22 +33 33 stage/sql/End of update loop (stage) STATEMENT 22 +34 34 stage/sql/Query end (stage) STATEMENT 22 +35 35 stage/sql/Commit (stage) STATEMENT 22 +36 36 stage/sql/Closing tables (stage) STATEMENT 22 +37 37 stage/sql/Starting cleanup (stage) STATEMENT 22 +38 38 stage/sql/Freeing items (stage) STATEMENT 22 +39 39 wait/io/socket/sql/client_connection send STATEMENT 22 +40 40 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 22 +41 42 stage/sql/Reset for next command (stage) STATEMENT 22 +42 42 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 41 +43 43 idle idle NULL NULL +44 64 statement/sql/select select "This is simple statement two" as payload NULL NULL +45 48 stage/sql/Init (stage) STATEMENT 44 +46 46 wait/io/socket/sql/client_connection recv STAGE 45 +47 47 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 45 +48 48 wait/io/file/sql/query_log write STAGE 45 +49 49 stage/sql/Checking permissions (stage) STATEMENT 44 +50 50 stage/sql/Opening tables (stage) STATEMENT 44 +51 51 stage/sql/After opening tables (stage) STATEMENT 44 +52 52 stage/sql/Init (stage) STATEMENT 44 +53 53 stage/sql/Optimizing (stage) STATEMENT 44 +54 54 stage/sql/Executing (stage) STATEMENT 44 +55 55 stage/sql/End of update loop (stage) STATEMENT 44 +56 56 stage/sql/Query end (stage) STATEMENT 44 +57 57 stage/sql/Commit (stage) STATEMENT 44 +58 58 stage/sql/Closing tables (stage) STATEMENT 44 +59 59 stage/sql/Starting cleanup (stage) STATEMENT 44 +60 60 stage/sql/Freeing items (stage) STATEMENT 44 +61 61 wait/io/socket/sql/client_connection send STATEMENT 44 +62 62 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 44 +63 64 stage/sql/Reset for next command (stage) STATEMENT 44 +64 64 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 63 +65 65 idle idle NULL NULL +66 85 statement/sql/select select "This is the first part of a multi query" as payload; select "And this is the second part of a multi query" as payload; select "With a third part to make things complete" as payload NULL NULL -61 65 stage/sql/init (stage) STATEMENT 60 -62 62 wait/io/socket/sql/client_connection recv STAGE 61 -63 63 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 61 -64 64 wait/io/file/sql/query_log write STAGE 61 -65 65 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 61 -66 66 stage/sql/checking permissions (stage) STATEMENT 60 -67 67 stage/sql/Opening tables (stage) STATEMENT 60 -68 68 stage/sql/After opening tables (stage) STATEMENT 60 -69 69 stage/sql/init (stage) STATEMENT 60 -70 70 stage/sql/optimizing (stage) STATEMENT 60 -71 71 stage/sql/executing (stage) STATEMENT 60 -72 72 stage/sql/end (stage) STATEMENT 60 -73 73 stage/sql/query end (stage) STATEMENT 60 -74 74 stage/sql/closing tables (stage) STATEMENT 60 -75 77 stage/sql/freeing items (stage) STATEMENT 60 -76 76 wait/io/socket/sql/client_connection send STAGE 75 -77 77 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 75 -78 93 statement/sql/select select "And this is the second part of a multi query" as payload; +67 71 stage/sql/Init (stage) STATEMENT 66 +68 68 wait/io/socket/sql/client_connection recv STAGE 67 +69 69 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 67 +70 70 wait/io/file/sql/query_log write STAGE 67 +71 71 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 67 +72 72 stage/sql/Checking permissions (stage) STATEMENT 66 +73 73 stage/sql/Opening tables (stage) STATEMENT 66 +74 74 stage/sql/After opening tables (stage) STATEMENT 66 +75 75 stage/sql/Init (stage) STATEMENT 66 +76 76 stage/sql/Optimizing (stage) STATEMENT 66 +77 77 stage/sql/Executing (stage) STATEMENT 66 +78 78 stage/sql/End of update loop (stage) STATEMENT 66 +79 79 stage/sql/Query end (stage) STATEMENT 66 +80 80 stage/sql/Commit (stage) STATEMENT 66 +81 81 stage/sql/Closing tables (stage) STATEMENT 66 +82 82 stage/sql/Starting cleanup (stage) STATEMENT 66 +83 85 stage/sql/Freeing items (stage) STATEMENT 66 +84 84 wait/io/socket/sql/client_connection send STAGE 83 +85 85 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 83 +86 103 statement/sql/select select "And this is the second part of a multi query" as payload; select "With a third part to make things complete" as payload NULL NULL -79 81 stage/sql/init (stage) STATEMENT 78 -80 80 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 79 -81 81 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 79 -82 82 stage/sql/checking permissions (stage) STATEMENT 78 -83 83 stage/sql/Opening tables (stage) STATEMENT 78 -84 84 stage/sql/After opening tables (stage) STATEMENT 78 -85 85 stage/sql/init (stage) STATEMENT 78 -86 86 stage/sql/optimizing (stage) STATEMENT 78 -87 87 stage/sql/executing (stage) STATEMENT 78 -88 88 stage/sql/end (stage) STATEMENT 78 -89 89 stage/sql/query end (stage) STATEMENT 78 -90 90 stage/sql/closing tables (stage) STATEMENT 78 -91 93 stage/sql/freeing items (stage) STATEMENT 78 -92 92 wait/io/socket/sql/client_connection send STAGE 91 -93 93 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 91 -94 110 statement/sql/select select "With a third part to make things complete" as payload NULL NULL -95 96 stage/sql/init (stage) STATEMENT 94 -96 96 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 95 -97 97 stage/sql/checking permissions (stage) STATEMENT 94 -98 98 stage/sql/Opening tables (stage) STATEMENT 94 -99 99 stage/sql/After opening tables (stage) STATEMENT 94 -100 100 stage/sql/init (stage) STATEMENT 94 -101 101 stage/sql/optimizing (stage) STATEMENT 94 -102 102 stage/sql/executing (stage) STATEMENT 94 -103 103 stage/sql/end (stage) STATEMENT 94 -104 104 stage/sql/query end (stage) STATEMENT 94 -105 105 stage/sql/closing tables (stage) STATEMENT 94 -106 106 stage/sql/freeing items (stage) STATEMENT 94 -107 107 wait/io/socket/sql/client_connection send STATEMENT 94 -108 108 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 94 -109 110 stage/sql/cleaning up (stage) STATEMENT 94 -110 110 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 109 -111 111 idle idle NULL NULL -112 130 statement/sql/select select "MARKER_END" as marker NULL NULL -113 116 stage/sql/init (stage) STATEMENT 112 -114 114 wait/io/socket/sql/client_connection recv STAGE 113 -115 115 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 113 -116 116 wait/io/file/sql/query_log write STAGE 113 -117 117 stage/sql/checking permissions (stage) STATEMENT 112 -118 118 stage/sql/Opening tables (stage) STATEMENT 112 -119 119 stage/sql/After opening tables (stage) STATEMENT 112 -120 120 stage/sql/init (stage) STATEMENT 112 -121 121 stage/sql/optimizing (stage) STATEMENT 112 -122 122 stage/sql/executing (stage) STATEMENT 112 -123 123 stage/sql/end (stage) STATEMENT 112 -124 124 stage/sql/query end (stage) STATEMENT 112 -125 125 stage/sql/closing tables (stage) STATEMENT 112 -126 126 stage/sql/freeing items (stage) STATEMENT 112 -127 127 wait/io/socket/sql/client_connection send STATEMENT 112 -128 128 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 112 -129 130 stage/sql/cleaning up (stage) STATEMENT 112 -130 130 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 129 +87 89 stage/sql/Init (stage) STATEMENT 86 +88 88 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 87 +89 89 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 87 +90 90 stage/sql/Checking permissions (stage) STATEMENT 86 +91 91 stage/sql/Opening tables (stage) STATEMENT 86 +92 92 stage/sql/After opening tables (stage) STATEMENT 86 +93 93 stage/sql/Init (stage) STATEMENT 86 +94 94 stage/sql/Optimizing (stage) STATEMENT 86 +95 95 stage/sql/Executing (stage) STATEMENT 86 +96 96 stage/sql/End of update loop (stage) STATEMENT 86 +97 97 stage/sql/Query end (stage) STATEMENT 86 +98 98 stage/sql/Commit (stage) STATEMENT 86 +99 99 stage/sql/Closing tables (stage) STATEMENT 86 +100 100 stage/sql/Starting cleanup (stage) STATEMENT 86 +101 103 stage/sql/Freeing items (stage) STATEMENT 86 +102 102 wait/io/socket/sql/client_connection send STAGE 101 +103 103 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 101 +104 122 statement/sql/select select "With a third part to make things complete" as payload NULL NULL +105 106 stage/sql/Init (stage) STATEMENT 104 +106 106 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 105 +107 107 stage/sql/Checking permissions (stage) STATEMENT 104 +108 108 stage/sql/Opening tables (stage) STATEMENT 104 +109 109 stage/sql/After opening tables (stage) STATEMENT 104 +110 110 stage/sql/Init (stage) STATEMENT 104 +111 111 stage/sql/Optimizing (stage) STATEMENT 104 +112 112 stage/sql/Executing (stage) STATEMENT 104 +113 113 stage/sql/End of update loop (stage) STATEMENT 104 +114 114 stage/sql/Query end (stage) STATEMENT 104 +115 115 stage/sql/Commit (stage) STATEMENT 104 +116 116 stage/sql/Closing tables (stage) STATEMENT 104 +117 117 stage/sql/Starting cleanup (stage) STATEMENT 104 +118 118 stage/sql/Freeing items (stage) STATEMENT 104 +119 119 wait/io/socket/sql/client_connection send STATEMENT 104 +120 120 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 104 +121 122 stage/sql/Reset for next command (stage) STATEMENT 104 +122 122 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 121 +123 123 idle idle NULL NULL +124 144 statement/sql/select select "MARKER_END" as marker NULL NULL +125 128 stage/sql/Init (stage) STATEMENT 124 +126 126 wait/io/socket/sql/client_connection recv STAGE 125 +127 127 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 125 +128 128 wait/io/file/sql/query_log write STAGE 125 +129 129 stage/sql/Checking permissions (stage) STATEMENT 124 +130 130 stage/sql/Opening tables (stage) STATEMENT 124 +131 131 stage/sql/After opening tables (stage) STATEMENT 124 +132 132 stage/sql/Init (stage) STATEMENT 124 +133 133 stage/sql/Optimizing (stage) STATEMENT 124 +134 134 stage/sql/Executing (stage) STATEMENT 124 +135 135 stage/sql/End of update loop (stage) STATEMENT 124 +136 136 stage/sql/Query end (stage) STATEMENT 124 +137 137 stage/sql/Commit (stage) STATEMENT 124 +138 138 stage/sql/Closing tables (stage) STATEMENT 124 +139 139 stage/sql/Starting cleanup (stage) STATEMENT 124 +140 140 stage/sql/Freeing items (stage) STATEMENT 124 +141 141 wait/io/socket/sql/client_connection send STATEMENT 124 +142 142 wait/synch/mutex/sql/THD::LOCK_thd_data lock STATEMENT 124 +143 144 stage/sql/Reset for next command (stage) STATEMENT 124 +144 144 wait/synch/mutex/sql/THD::LOCK_thd_data lock STAGE 143 disconnect con1; diff --git a/mysql-test/suite/perfschema/r/ortho_iter.result b/mysql-test/suite/perfschema/r/ortho_iter.result index f449aa97b40..299551051c9 100644 --- a/mysql-test/suite/perfschema/r/ortho_iter.result +++ b/mysql-test/suite/perfschema/r/ortho_iter.result @@ -121,7 +121,7 @@ performance_schema_max_rwlock_classes 40 performance_schema_max_rwlock_instances 5000 performance_schema_max_socket_classes 10 performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 +performance_schema_max_stage_classes 160 performance_schema_max_table_handles 1000 performance_schema_max_table_instances 500 performance_schema_max_thread_classes 50 diff --git a/mysql-test/suite/perfschema/r/privilege_table_io.result b/mysql-test/suite/perfschema/r/privilege_table_io.result index b1bc1857b52..5443c178502 100644 --- a/mysql-test/suite/perfschema/r/privilege_table_io.result +++ b/mysql-test/suite/perfschema/r/privilege_table_io.result @@ -50,7 +50,7 @@ performance_schema_max_rwlock_classes 40 performance_schema_max_rwlock_instances 5000 performance_schema_max_socket_classes 10 performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 +performance_schema_max_stage_classes 160 performance_schema_max_table_handles 1000 performance_schema_max_table_instances 500 performance_schema_max_thread_classes 50 diff --git a/mysql-test/suite/perfschema/r/setup_instruments_defaults.result b/mysql-test/suite/perfschema/r/setup_instruments_defaults.result index b0570d70602..f31bb1a8b7a 100644 --- a/mysql-test/suite/perfschema/r/setup_instruments_defaults.result +++ b/mysql-test/suite/perfschema/r/setup_instruments_defaults.result @@ -10,7 +10,7 @@ WHERE name IN ( AND enabled = 'yes' AND timed = 'no' ORDER BY name; NAME ENABLED TIMED -stage/sql/creating table YES NO +stage/sql/Creating table YES NO wait/synch/mutex/sql/LOCK_plugin YES NO wait/synch/mutex/sql/LOCK_user_conn YES NO SELECT * FROM performance_schema.setup_instruments diff --git a/mysql-test/suite/perfschema/r/sizing_default.result b/mysql-test/suite/perfschema/r/sizing_default.result index 1ca202e821f..07fbf35619b 100644 --- a/mysql-test/suite/perfschema/r/sizing_default.result +++ b/mysql-test/suite/perfschema/r/sizing_default.result @@ -33,7 +33,7 @@ performance_schema_max_rwlock_classes 40 performance_schema_max_rwlock_instances 9102 performance_schema_max_socket_classes 10 performance_schema_max_socket_instances 322 -performance_schema_max_stage_classes 150 +performance_schema_max_stage_classes\t160 performance_schema_max_table_handles 4000 performance_schema_max_table_instances 12500 performance_schema_max_thread_classes 50 diff --git a/mysql-test/suite/perfschema/r/sizing_high.result b/mysql-test/suite/perfschema/r/sizing_high.result index b633d5fce8d..1cf84a14d22 100644 --- a/mysql-test/suite/perfschema/r/sizing_high.result +++ b/mysql-test/suite/perfschema/r/sizing_high.result @@ -33,7 +33,7 @@ performance_schema_max_rwlock_classes 40 performance_schema_max_rwlock_instances 30800 performance_schema_max_socket_classes 10 performance_schema_max_socket_instances 420 -performance_schema_max_stage_classes 150 +performance_schema_max_stage_classes\t160 performance_schema_max_table_handles 800 performance_schema_max_table_instances 12500 performance_schema_max_thread_classes 50 diff --git a/mysql-test/suite/perfschema/r/sizing_low.result b/mysql-test/suite/perfschema/r/sizing_low.result index a698f55aa07..4569ebd7a5e 100644 --- a/mysql-test/suite/perfschema/r/sizing_low.result +++ b/mysql-test/suite/perfschema/r/sizing_low.result @@ -33,7 +33,7 @@ performance_schema_max_rwlock_classes 40 performance_schema_max_rwlock_instances 1612 performance_schema_max_socket_classes 10 performance_schema_max_socket_instances 67 -performance_schema_max_stage_classes 150 +performance_schema_max_stage_classes\t160 performance_schema_max_table_handles 112 performance_schema_max_table_instances 445 performance_schema_max_thread_classes 50 diff --git a/mysql-test/suite/perfschema/r/sizing_med.result b/mysql-test/suite/perfschema/r/sizing_med.result index 2eda017467a..24fba02d16b 100644 --- a/mysql-test/suite/perfschema/r/sizing_med.result +++ b/mysql-test/suite/perfschema/r/sizing_med.result @@ -33,7 +33,7 @@ performance_schema_max_rwlock_classes 40 performance_schema_max_rwlock_instances 2222 performance_schema_max_socket_classes 10 performance_schema_max_socket_instances 232 -performance_schema_max_stage_classes 150 +performance_schema_max_stage_classes\t160 performance_schema_max_table_handles 573 performance_schema_max_table_instances 556 performance_schema_max_thread_classes 50 diff --git a/mysql-test/suite/perfschema/r/sizing_off.result b/mysql-test/suite/perfschema/r/sizing_off.result index b4ca7b1b9be..e49a9824f42 100644 --- a/mysql-test/suite/perfschema/r/sizing_off.result +++ b/mysql-test/suite/perfschema/r/sizing_off.result @@ -24,7 +24,7 @@ performance_schema_max_rwlock_classes 40 performance_schema_max_rwlock_instances -1 performance_schema_max_socket_classes 10 performance_schema_max_socket_instances -1 -performance_schema_max_stage_classes 150 +performance_schema_max_stage_classes\t160 performance_schema_max_table_handles -1 performance_schema_max_table_instances -1 performance_schema_max_thread_classes 50 diff --git a/mysql-test/suite/perfschema/r/stage_mdl_function.result b/mysql-test/suite/perfschema/r/stage_mdl_function.result index eb72fa338aa..5f55dd6c28e 100644 --- a/mysql-test/suite/perfschema/r/stage_mdl_function.result +++ b/mysql-test/suite/perfschema/r/stage_mdl_function.result @@ -14,23 +14,23 @@ username event_name sql_text user1 statement/sql/select select test.f1() username event_name nesting_event_type username event_name nesting_event_type -user1 stage/sql/executing STATEMENT -user1 stage/sql/Opening tables STATEMENT -user1 stage/sql/After opening tables STATEMENT -user1 stage/sql/closing tables STATEMENT -user1 stage/sql/end STATEMENT -user1 stage/sql/query end STATEMENT -user1 stage/sql/closing tables STATEMENT +user1 stage/sql/Closing tables 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/freeing items STATEMENT -user1 stage/sql/cleaning up STATEMENT +user1 stage/sql/Closing tables STATEMENT +user1 stage/sql/Starting cleanup STATEMENT +user1 stage/sql/Freeing items STATEMENT +user1 stage/sql/Reset for next command STATEMENT call dump_one_thread('user2'); username event_name sql_text user2 statement/sql/drop_function drop function test.f1 username event_name nesting_event_type user2 stage/sql/Waiting for stored function metadata lock STATEMENT username event_name nesting_event_type -user2 stage/sql/init STATEMENT +user2 stage/sql/Init STATEMENT connection con1; select f1(); f1() diff --git a/mysql-test/suite/perfschema/r/stage_mdl_global.result b/mysql-test/suite/perfschema/r/stage_mdl_global.result index f82874bef74..7d15b250bd9 100644 --- a/mysql-test/suite/perfschema/r/stage_mdl_global.result +++ b/mysql-test/suite/perfschema/r/stage_mdl_global.result @@ -8,22 +8,24 @@ username event_name sql_text user1 statement/sql/flush flush tables with read lock username event_name nesting_event_type username event_name nesting_event_type -user1 stage/sql/init STATEMENT -user1 stage/sql/init STATEMENT +user1 stage/sql/Init STATEMENT user1 stage/sql/Waiting for query cache lock STATEMENT -user1 stage/sql/init STATEMENT -user1 stage/sql/query end STATEMENT -user1 stage/sql/closing tables STATEMENT -user1 stage/sql/freeing items STATEMENT -user1 stage/sql/cleaning up STATEMENT +user1 stage/sql/Init 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/Starting cleanup STATEMENT +user1 stage/sql/Freeing items STATEMENT +user1 stage/sql/Reset for next command STATEMENT call dump_one_thread('user2'); username event_name sql_text user2 statement/sql/insert insert into test.t1 values (1), (2), (3) username event_name nesting_event_type user2 stage/sql/Waiting for global read lock STATEMENT username event_name nesting_event_type -user2 stage/sql/init STATEMENT -user2 stage/sql/checking permissions STATEMENT +user2 stage/sql/Init STATEMENT +user2 stage/sql/Checking permissions STATEMENT user2 stage/sql/Opening tables STATEMENT connection con1; unlock tables; diff --git a/mysql-test/suite/perfschema/r/stage_mdl_procedure.result b/mysql-test/suite/perfschema/r/stage_mdl_procedure.result index 8f7e70bc740..6362f725b88 100644 --- a/mysql-test/suite/perfschema/r/stage_mdl_procedure.result +++ b/mysql-test/suite/perfschema/r/stage_mdl_procedure.result @@ -21,23 +21,23 @@ username event_name sql_text user1 statement/sql/select select test.f1() username event_name nesting_event_type username event_name nesting_event_type -user1 stage/sql/closing tables STATEMENT -user1 stage/sql/Opening tables STATEMENT -user1 stage/sql/After opening tables STATEMENT -user1 stage/sql/closing tables STATEMENT -user1 stage/sql/end STATEMENT -user1 stage/sql/query end STATEMENT -user1 stage/sql/closing tables STATEMENT +user1 stage/sql/Closing tables 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/freeing items STATEMENT -user1 stage/sql/cleaning up STATEMENT +user1 stage/sql/Closing tables STATEMENT +user1 stage/sql/Starting cleanup STATEMENT +user1 stage/sql/Freeing items STATEMENT +user1 stage/sql/Reset for next command STATEMENT call dump_one_thread('user2'); username event_name sql_text user2 statement/sql/drop_procedure drop procedure test.p1 username event_name nesting_event_type user2 stage/sql/Waiting for stored procedure metadata lock STATEMENT username event_name nesting_event_type -user2 stage/sql/init STATEMENT +user2 stage/sql/Init STATEMENT connection con1; select test.f1(); test.f1() diff --git a/mysql-test/suite/perfschema/r/stage_mdl_table.result b/mysql-test/suite/perfschema/r/stage_mdl_table.result index f7d519bedeb..c703e910891 100644 --- a/mysql-test/suite/perfschema/r/stage_mdl_table.result +++ b/mysql-test/suite/perfschema/r/stage_mdl_table.result @@ -16,30 +16,29 @@ username event_name sql_text user1 statement/sql/select select * from test.t1 for update username event_name nesting_event_type username event_name nesting_event_type -user1 stage/sql/statistics STATEMENT -user1 stage/sql/preparing STATEMENT -user1 stage/sql/executing STATEMENT user1 stage/sql/Sending data STATEMENT -user1 stage/sql/end STATEMENT -user1 stage/sql/query end STATEMENT -user1 stage/sql/closing tables 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/freeing items STATEMENT -user1 stage/sql/cleaning up STATEMENT +user1 stage/sql/Closing tables STATEMENT +user1 stage/sql/Starting cleanup STATEMENT +user1 stage/sql/Freeing items STATEMENT +user1 stage/sql/Reset for next command STATEMENT call dump_one_thread('user2'); username event_name sql_text user2 statement/sql/alter_table alter table test.t1 add column (b int) username event_name nesting_event_type user2 stage/sql/Waiting for table metadata lock STATEMENT username event_name nesting_event_type -user2 stage/sql/init STATEMENT -user2 stage/sql/checking permissions STATEMENT -user2 stage/sql/checking permissions STATEMENT -user2 stage/sql/init STATEMENT +user2 stage/sql/Init STATEMENT +user2 stage/sql/Checking permissions STATEMENT +user2 stage/sql/Init for update STATEMENT user2 stage/sql/Opening tables STATEMENT user2 stage/sql/After opening tables STATEMENT -user2 stage/sql/setup STATEMENT -user2 stage/sql/creating table STATEMENT +user2 stage/sql/Setup STATEMENT +user2 stage/sql/Creating table STATEMENT user2 stage/sql/After create STATEMENT connection con1; commit; diff --git a/mysql-test/suite/perfschema/r/start_server_disable_idle.result b/mysql-test/suite/perfschema/r/start_server_disable_idle.result index 382824458a0..294c3a72f58 100644 --- a/mysql-test/suite/perfschema/r/start_server_disable_idle.result +++ b/mysql-test/suite/perfschema/r/start_server_disable_idle.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; select * from performance_schema.setup_instruments diff --git a/mysql-test/suite/perfschema/r/start_server_disable_stages.result b/mysql-test/suite/perfschema/r/start_server_disable_stages.result index 6fae8be810f..6ed2234babe 100644 --- a/mysql-test/suite/perfschema/r/start_server_disable_stages.result +++ b/mysql-test/suite/perfschema/r/start_server_disable_stages.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; select * from performance_schema.setup_instruments diff --git a/mysql-test/suite/perfschema/r/start_server_disable_statements.result b/mysql-test/suite/perfschema/r/start_server_disable_statements.result index ff9c6f93268..f942f2ee570 100644 --- a/mysql-test/suite/perfschema/r/start_server_disable_statements.result +++ b/mysql-test/suite/perfschema/r/start_server_disable_statements.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; select * from performance_schema.setup_instruments diff --git a/mysql-test/suite/perfschema/r/start_server_disable_waits.result b/mysql-test/suite/perfschema/r/start_server_disable_waits.result index 38e1f59cd39..fb02ace2ed4 100644 --- a/mysql-test/suite/perfschema/r/start_server_disable_waits.result +++ b/mysql-test/suite/perfschema/r/start_server_disable_waits.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; select * from performance_schema.setup_instruments diff --git a/mysql-test/suite/perfschema/r/start_server_innodb.result b/mysql-test/suite/perfschema/r/start_server_innodb.result index a270b4a6320..cf210c0935c 100644 --- a/mysql-test/suite/perfschema/r/start_server_innodb.result +++ b/mysql-test/suite/perfschema/r/start_server_innodb.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show status like "performance_schema%"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_account.result b/mysql-test/suite/perfschema/r/start_server_no_account.result index 05d67d88a8b..c02b75e5c33 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_account.result +++ b/mysql-test/suite/perfschema/r/start_server_no_account.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 0 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_accounts_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_cond_class.result b/mysql-test/suite/perfschema/r/start_server_no_cond_class.result index 574c8d4173b..a3e16b4be8d 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_cond_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_cond_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_cond_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_cond_inst.result b/mysql-test/suite/perfschema/r/start_server_no_cond_inst.result index ea5c7a69125..df5373ead87 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_cond_inst.result +++ b/mysql-test/suite/perfschema/r/start_server_no_cond_inst.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 0 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_cond_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_file_class.result b/mysql-test/suite/perfschema/r/start_server_no_file_class.result index 0f93054bfd4..5e6da344a70 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_file_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_file_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 0 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_file_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_file_inst.result b/mysql-test/suite/perfschema/r/start_server_no_file_inst.result index 71004d68f5e..33dce305ef3 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_file_inst.result +++ b/mysql-test/suite/perfschema/r/start_server_no_file_inst.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 0 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_file_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_host.result b/mysql-test/suite/perfschema/r/start_server_no_host.result index 329f74a4fff..a4f362b256f 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_host.result +++ b/mysql-test/suite/perfschema/r/start_server_no_host.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_hosts_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_mutex_class.result b/mysql-test/suite/perfschema/r/start_server_no_mutex_class.result index cda2719cc37..9fadcc581c7 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_mutex_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_mutex_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 0 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_mutex_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_mutex_inst.result b/mysql-test/suite/perfschema/r/start_server_no_mutex_inst.result index 0ea5fe44521..c443a4e58db 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_mutex_inst.result +++ b/mysql-test/suite/perfschema/r/start_server_no_mutex_inst.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 0 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_mutex_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_rwlock_class.result b/mysql-test/suite/perfschema/r/start_server_no_rwlock_class.result index 29a17e6a3ac..c3939ced060 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_rwlock_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_rwlock_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 0 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_rwlock_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_rwlock_inst.result b/mysql-test/suite/perfschema/r/start_server_no_rwlock_inst.result index 8b214077f37..7892c6ba753 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_rwlock_inst.result +++ b/mysql-test/suite/perfschema/r/start_server_no_rwlock_inst.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 0 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_rwlock_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_setup_actors.result b/mysql-test/suite/perfschema/r/start_server_no_setup_actors.result index 3a0588d616d..24b0ee16685 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_setup_actors.result +++ b/mysql-test/suite/perfschema/r/start_server_no_setup_actors.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 0 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_setup_actors_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_setup_objects.result b/mysql-test/suite/perfschema/r/start_server_no_setup_objects.result index 89763379b99..630284c69be 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_setup_objects.result +++ b/mysql-test/suite/perfschema/r/start_server_no_setup_objects.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 0 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_setup_objects_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_socket_class.result b/mysql-test/suite/perfschema/r/start_server_no_socket_class.result index 0b14c6caf15..45e353a1372 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_socket_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_socket_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 0 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_socket_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_socket_inst.result b/mysql-test/suite/perfschema/r/start_server_no_socket_inst.result index 599e09f6c99..0c78ec66db9 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_socket_inst.result +++ b/mysql-test/suite/perfschema/r/start_server_no_socket_inst.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 0 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_socket_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_stage_class.result b/mysql-test/suite/perfschema/r/start_server_no_stage_class.result index 1d53efc500c..f3e95c3ac7b 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_stage_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_stage_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 0 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_stage_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_stages_history.result b/mysql-test/suite/perfschema/r/start_server_no_stages_history.result index 370ec61ff67..2e5005323dd 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_stages_history.result +++ b/mysql-test/suite/perfschema/r/start_server_no_stages_history.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 0 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_events_stages_history_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_stages_history_long.result b/mysql-test/suite/perfschema/r/start_server_no_stages_history_long.result index d8018e0ba44..cb29a5812fc 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_stages_history_long.result +++ b/mysql-test/suite/perfschema/r/start_server_no_stages_history_long.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 0 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_events_stages_history_long_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_statement_class.result b/mysql-test/suite/perfschema/r/start_server_no_statement_class.result index a617e7edb0a..d62b4ba1daa 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_statement_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_statement_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_statement_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_statements_history.result b/mysql-test/suite/perfschema/r/start_server_no_statements_history.result index 8d196aa9a4a..ed4b2870e6d 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_statements_history.result +++ b/mysql-test/suite/perfschema/r/start_server_no_statements_history.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 0 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_events_statements_history_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_statements_history_long.result b/mysql-test/suite/perfschema/r/start_server_no_statements_history_long.result index 360e8db910b..a48d5fa9339 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_statements_history_long.result +++ b/mysql-test/suite/perfschema/r/start_server_no_statements_history_long.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 0 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_events_statements_history_long_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_table_hdl.result b/mysql-test/suite/perfschema/r/start_server_no_table_hdl.result index 01b7233582e..5bc38231122 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_table_hdl.result +++ b/mysql-test/suite/perfschema/r/start_server_no_table_hdl.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 0 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_table_instances"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_table_inst.result b/mysql-test/suite/perfschema/r/start_server_no_table_inst.result index 5608c324321..def59b8b54b 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_table_inst.result +++ b/mysql-test/suite/perfschema/r/start_server_no_table_inst.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 0 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_table_instances"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_thread_class.result b/mysql-test/suite/perfschema/r/start_server_no_thread_class.result index b1a7758a9d8..16952409b56 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_thread_class.result +++ b/mysql-test/suite/perfschema/r/start_server_no_thread_class.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 0 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_thread_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_thread_inst.result b/mysql-test/suite/perfschema/r/start_server_no_thread_inst.result index ad0353589ad..e3ccd3f91e6 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_thread_inst.result +++ b/mysql-test/suite/perfschema/r/start_server_no_thread_inst.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 0 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_max_thread_classes"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_user.result b/mysql-test/suite/perfschema/r/start_server_no_user.result index 2e1c097e28b..7f006d6b47a 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_user.result +++ b/mysql-test/suite/perfschema/r/start_server_no_user.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 0 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_users_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_waits_history.result b/mysql-test/suite/perfschema/r/start_server_no_waits_history.result index a3a9cbeee11..27122723030 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_waits_history.result +++ b/mysql-test/suite/perfschema/r/start_server_no_waits_history.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_events_waits_history_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_no_waits_history_long.result b/mysql-test/suite/perfschema/r/start_server_no_waits_history_long.result index e5465aa6bbb..16ee8a30343 100644 --- a/mysql-test/suite/perfschema/r/start_server_no_waits_history_long.result +++ b/mysql-test/suite/perfschema/r/start_server_no_waits_history_long.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema_events_waits_history_long_size"; diff --git a/mysql-test/suite/perfschema/r/start_server_nothing.result b/mysql-test/suite/perfschema/r/start_server_nothing.result index d28eed31e7d..2aa5658f98c 100644 --- a/mysql-test/suite/perfschema/r/start_server_nothing.result +++ b/mysql-test/suite/perfschema/r/start_server_nothing.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 0 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 0 -performance_schema_events_stages_history_size 0 -performance_schema_events_statements_history_long_size 0 -performance_schema_events_statements_history_size 0 -performance_schema_events_waits_history_long_size 0 -performance_schema_events_waits_history_size 0 -performance_schema_hosts_size 0 -performance_schema_max_cond_classes 0 -performance_schema_max_cond_instances 0 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 0 -performance_schema_max_file_handles 0 -performance_schema_max_file_instances 0 -performance_schema_max_mutex_classes 0 -performance_schema_max_mutex_instances 0 -performance_schema_max_rwlock_classes 0 -performance_schema_max_rwlock_instances 0 -performance_schema_max_socket_classes 0 -performance_schema_max_socket_instances 0 -performance_schema_max_stage_classes 0 -performance_schema_max_table_handles 0 -performance_schema_max_table_instances 0 -performance_schema_max_thread_classes 0 -performance_schema_max_thread_instances 0 -performance_schema_session_connect_attrs_size 0 -performance_schema_setup_actors_size 0 -performance_schema_setup_objects_size 0 -performance_schema_users_size 0 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show variables like "performance_schema%"; diff --git a/mysql-test/suite/perfschema/r/start_server_off.result b/mysql-test/suite/perfschema/r/start_server_off.result index 5666b96be8e..8c8b8a3a7bb 100644 --- a/mysql-test/suite/perfschema/r/start_server_off.result +++ b/mysql-test/suite/perfschema/r/start_server_off.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 0 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema OFF -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show status like "performance_schema%"; @@ -131,6 +44,9 @@ Performance_schema_table_instances_lost 0 Performance_schema_thread_classes_lost 0 Performance_schema_thread_instances_lost 0 Performance_schema_users_lost 0 +show variables like "performance_schema"; +Variable_name Value +performance_schema OFF select * from performance_schema.setup_consumers; NAME ENABLED select * from performance_schema.setup_instruments; diff --git a/mysql-test/suite/perfschema/r/start_server_on.result b/mysql-test/suite/perfschema/r/start_server_on.result index a270b4a6320..cf210c0935c 100644 --- a/mysql-test/suite/perfschema/r/start_server_on.result +++ b/mysql-test/suite/perfschema/r/start_server_on.result @@ -17,93 +17,6 @@ count(*) > 3 select count(*) from performance_schema.setup_timers; count(*) 4 -select * from performance_schema.accounts; -select * from performance_schema.cond_instances; -select * from performance_schema.events_stages_current; -select * from performance_schema.events_stages_history; -select * from performance_schema.events_stages_history_long; -select * from performance_schema.events_stages_summary_by_account_by_event_name; -select * from performance_schema.events_stages_summary_by_host_by_event_name; -select * from performance_schema.events_stages_summary_by_thread_by_event_name; -select * from performance_schema.events_stages_summary_by_user_by_event_name; -select * from performance_schema.events_stages_summary_global_by_event_name; -select * from performance_schema.events_statements_current; -select * from performance_schema.events_statements_history; -select * from performance_schema.events_statements_history_long; -select * from performance_schema.events_statements_summary_by_account_by_event_name; -select * from performance_schema.events_statements_summary_by_digest; -select * from performance_schema.events_statements_summary_by_host_by_event_name; -select * from performance_schema.events_statements_summary_by_thread_by_event_name; -select * from performance_schema.events_statements_summary_by_user_by_event_name; -select * from performance_schema.events_statements_summary_global_by_event_name; -select * from performance_schema.events_waits_current; -select * from performance_schema.events_waits_history; -select * from performance_schema.events_waits_history_long; -select * from performance_schema.events_waits_summary_by_account_by_event_name; -select * from performance_schema.events_waits_summary_by_host_by_event_name; -select * from performance_schema.events_waits_summary_by_instance; -select * from performance_schema.events_waits_summary_by_thread_by_event_name; -select * from performance_schema.events_waits_summary_by_user_by_event_name; -select * from performance_schema.events_waits_summary_global_by_event_name; -select * from performance_schema.file_instances; -select * from performance_schema.file_summary_by_event_name; -select * from performance_schema.file_summary_by_instance; -select * from performance_schema.host_cache; -select * from performance_schema.hosts; -select * from performance_schema.mutex_instances; -select * from performance_schema.objects_summary_global_by_type; -select * from performance_schema.performance_timers; -select * from performance_schema.rwlock_instances; -select * from performance_schema.session_account_connect_attrs; -select * from performance_schema.session_connect_attrs; -select * from performance_schema.setup_actors; -select * from performance_schema.setup_consumers; -select * from performance_schema.setup_instruments; -select * from performance_schema.setup_objects; -select * from performance_schema.setup_timers; -select * from performance_schema.socket_instances; -select * from performance_schema.socket_summary_by_instance; -select * from performance_schema.socket_summary_by_event_name; -select * from performance_schema.table_io_waits_summary_by_index_usage; -select * from performance_schema.table_io_waits_summary_by_table; -select * from performance_schema.table_lock_waits_summary_by_table; -select * from performance_schema.threads; -select * from performance_schema.users; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 show engine PERFORMANCE_SCHEMA status; show status like "performance_schema%"; show status like "performance_schema%"; diff --git a/mysql-test/suite/perfschema/r/start_server_variables.result b/mysql-test/suite/perfschema/r/start_server_variables.result new file mode 100644 index 00000000000..3f2df9603b3 --- /dev/null +++ b/mysql-test/suite/perfschema/r/start_server_variables.result @@ -0,0 +1,56 @@ +show databases; +Database +information_schema +mtr +mysql +performance_schema +test +select count(*) from performance_schema.performance_timers; +count(*) +5 +select count(*) from performance_schema.setup_consumers; +count(*) +12 +select count(*) > 3 from performance_schema.setup_instruments; +count(*) > 3 +1 +select count(*) from performance_schema.setup_timers; +count(*) +4 +show engine PERFORMANCE_SCHEMA status; +show status like "performance_schema%"; +show variables where +`Variable_name` != "performance_schema_max_statement_classes" and +`Variable_name` like "performance_schema%"; +Variable_name Value +performance_schema ON +performance_schema_accounts_size 100 +performance_schema_digests_size 200 +performance_schema_events_stages_history_long_size 1000 +performance_schema_events_stages_history_size 10 +performance_schema_events_statements_history_long_size 1000 +performance_schema_events_statements_history_size 10 +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 80 +performance_schema_max_cond_instances 1000 +performance_schema_max_digest_length 1024 +performance_schema_max_file_classes 50 +performance_schema_max_file_handles 32768 +performance_schema_max_file_instances 10000 +performance_schema_max_mutex_classes 200 +performance_schema_max_mutex_instances 5000 +performance_schema_max_rwlock_classes 40 +performance_schema_max_rwlock_instances 5000 +performance_schema_max_socket_classes 10 +performance_schema_max_socket_instances 1000 +performance_schema_max_stage_classes 160 +performance_schema_max_table_handles 1000 +performance_schema_max_table_instances 500 +performance_schema_max_thread_classes 50 +performance_schema_max_thread_instances 200 +performance_schema_session_connect_attrs_size 2048 +performance_schema_setup_actors_size 100 +performance_schema_setup_objects_size 100 +performance_schema_users_size 100 diff --git a/mysql-test/suite/perfschema/r/table_aggregate_global_2u_2t.result b/mysql-test/suite/perfschema/r/table_aggregate_global_2u_2t.result index 73a4696070d..dfaa91a3fbc 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_global_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_global_2u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_global_2u_3t.result b/mysql-test/suite/perfschema/r/table_aggregate_global_2u_3t.result index bb7cfdc92c7..2a6537fd6bd 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_global_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_global_2u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_global_4u_2t.result b/mysql-test/suite/perfschema/r/table_aggregate_global_4u_2t.result index 816df3de09a..3eddd735aa2 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_global_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_global_4u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_global_4u_3t.result b/mysql-test/suite/perfschema/r/table_aggregate_global_4u_3t.result index d44488d75f9..fed189a7667 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_global_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_global_4u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_2t.result b/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_2t.result index a70e6ee1df5..ee95e4c0417 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_2t.result @@ -37,66 +37,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_3t.result b/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_3t.result index d4d19f5db05..d6e4e674258 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_hist_2u_3t.result @@ -36,66 +36,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_2t.result b/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_2t.result index 7fa8781ad49..2d2a55efa77 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_2t.result @@ -37,66 +37,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_3t.result b/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_3t.result index e138ad6542a..de8fc4702a6 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_hist_4u_3t.result @@ -36,66 +36,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_off.result b/mysql-test/suite/perfschema/r/table_aggregate_off.result index 9384f07f0f0..77a714563fe 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_off.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_off.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_2t.result b/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_2t.result index 42785a22c32..c176679a95d 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_3t.result b/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_3t.result index 1066228199d..38c8813ea18 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_thread_2u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_2t.result b/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_2t.result index 4e36b9d75a6..9144d81c8a0 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_3t.result b/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_3t.result index ee32194b651..10736990dbe 100644 --- a/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_aggregate_thread_4u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_2t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_2t.result index 2d3d2d38079..a8fd0a7eb72 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_3t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_3t.result index b47bf2dbe1e..701a25194f4 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_global_2u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_2t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_2t.result index 92c12d84f0f..4d8d625ee00 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_3t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_3t.result index 9b78d257e0e..8a8de99fd4f 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_global_4u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_2t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_2t.result index c5481451fd3..987732538c4 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_3t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_3t.result index 81f424800d6..324c6534303 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_2u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_2t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_2t.result index 15e62be4b22..914bcc7084b 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_3t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_3t.result index dbcf7aca9a4..f92ebe8e467 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_hist_4u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_2t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_2t.result index 1230f1e91fe..8eb52d58efc 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_3t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_3t.result index 1b04e9fe898..fba8a48ad35 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_2u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_2t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_2t.result index f376160939d..2bcabb81def 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_3t.result b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_3t.result index aae2c54e25c..323570b7d40 100644 --- a/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_io_aggregate_thread_4u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_2t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_2t.result index 23f800e81d9..3a3d093d91e 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_3t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_3t.result index 99734474536..04c4fe4d949 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_2u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_2t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_2t.result index fe63232cf52..61783e41b1b 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_3t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_3t.result index 376333fc794..2be8dbdf5b3 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_global_4u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_2t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_2t.result index 191bd161d92..0ded9d54590 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_3t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_3t.result index 80590d5e468..13642f45b5a 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_2u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_2t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_2t.result index e9b39c5db14..61c649bd2cf 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_2t.result @@ -39,66 +39,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_3t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_3t.result index 92a020f1984..5d5282ba899 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_hist_4u_3t.result @@ -38,66 +38,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_2t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_2t.result index 4cdcbc45d7d..8da7fca1d3e 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_2t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_3t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_3t.result index 038335c22cb..88f658778c4 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_3t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_2u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_2t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_2t.result index ac5cde25522..72bc52cefa3 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_2t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_2t.result @@ -41,66 +41,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_3t.result b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_3t.result index faaf925dacd..d2ee0bd6c5e 100644 --- a/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_3t.result +++ b/mysql-test/suite/perfschema/r/table_lock_aggregate_thread_4u_3t.result @@ -40,66 +40,6 @@ truncate performance_schema.events_waits_summary_by_user_by_event_name; truncate performance_schema.events_waits_summary_by_host_by_event_name; truncate performance_schema.events_waits_summary_global_by_event_name; truncate performance_schema.events_waits_history_long; -show variables where -`Variable_name` != "performance_schema_max_statement_classes" and -`Variable_name` like "performance_schema%"; -Variable_name Value -performance_schema ON -performance_schema_accounts_size 100 -performance_schema_digests_size 200 -performance_schema_events_stages_history_long_size 1000 -performance_schema_events_stages_history_size 10 -performance_schema_events_statements_history_long_size 1000 -performance_schema_events_statements_history_size 10 -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 80 -performance_schema_max_cond_instances 1000 -performance_schema_max_digest_length 1024 -performance_schema_max_file_classes 50 -performance_schema_max_file_handles 32768 -performance_schema_max_file_instances 10000 -performance_schema_max_mutex_classes 200 -performance_schema_max_mutex_instances 5000 -performance_schema_max_rwlock_classes 40 -performance_schema_max_rwlock_instances 5000 -performance_schema_max_socket_classes 10 -performance_schema_max_socket_instances 1000 -performance_schema_max_stage_classes 150 -performance_schema_max_table_handles 1000 -performance_schema_max_table_instances 500 -performance_schema_max_thread_classes 50 -performance_schema_max_thread_instances 200 -performance_schema_session_connect_attrs_size 2048 -performance_schema_setup_actors_size 100 -performance_schema_setup_objects_size 100 -performance_schema_users_size 100 -show status like "performance_schema%"; -Variable_name Value -Performance_schema_accounts_lost 0 -Performance_schema_cond_classes_lost 0 -Performance_schema_cond_instances_lost 0 -Performance_schema_digest_lost 0 -Performance_schema_file_classes_lost 0 -Performance_schema_file_handles_lost 0 -Performance_schema_file_instances_lost 0 -Performance_schema_hosts_lost 0 -Performance_schema_locker_lost 0 -Performance_schema_mutex_classes_lost 0 -Performance_schema_mutex_instances_lost 0 -Performance_schema_rwlock_classes_lost 0 -Performance_schema_rwlock_instances_lost 0 -Performance_schema_session_connect_attrs_lost 0 -Performance_schema_socket_classes_lost 0 -Performance_schema_socket_instances_lost 0 -Performance_schema_stage_classes_lost 0 -Performance_schema_statement_classes_lost 0 -Performance_schema_table_handles_lost 0 -Performance_schema_table_instances_lost 0 -Performance_schema_thread_classes_lost 0 -Performance_schema_thread_instances_lost 0 -Performance_schema_users_lost 0 "================== Step 1 ==================" call dump_thread(); username status diff --git a/mysql-test/suite/perfschema/t/start_server_off.test b/mysql-test/suite/perfschema/t/start_server_off.test index 8b58f8c0814..400303e05d2 100644 --- a/mysql-test/suite/perfschema/t/start_server_off.test +++ b/mysql-test/suite/perfschema/t/start_server_off.test @@ -7,6 +7,7 @@ # Expecting all off / zero show status like "performance_schema%"; +show variables like "performance_schema"; # Expect all consumers disabled @@ -44,5 +45,3 @@ truncate performance_schema.events_statements_history_long; truncate performance_schema.events_waits_history_long; truncate performance_schema.setup_objects; truncate performance_schema.setup_actors; - - diff --git a/mysql-test/suite/perfschema/t/start_server_variables.test b/mysql-test/suite/perfschema/t/start_server_variables.test new file mode 100644 index 00000000000..57656f9e077 --- /dev/null +++ b/mysql-test/suite/perfschema/t/start_server_variables.test @@ -0,0 +1,11 @@ +# Tests for PERFORMANCE_SCHEMA + +--source include/not_embedded.inc +--source include/have_perfschema.inc + +--source ../include/start_server_common.inc + +# This has a stable output, printing the result: +show variables where + `Variable_name` != "performance_schema_max_statement_classes" and + `Variable_name` like "performance_schema%"; diff --git a/mysql-test/suite/perfschema_stress/t/read.test b/mysql-test/suite/perfschema_stress/t/read.test index c330444f600..829c03985ed 100644 --- a/mysql-test/suite/perfschema_stress/t/read.test +++ b/mysql-test/suite/perfschema_stress/t/read.test @@ -1,4 +1,5 @@ --source include/not_embedded.inc +--source include/have_perfschema.inc SELECT * FROM performance_schema.setup_instruments WHERE ENABLED='NO' AND TIMED='NO'; diff --git a/mysql-test/suite/plugins/r/server_audit.result b/mysql-test/suite/plugins/r/server_audit.result index 45206c8bcb4..0d02ae47586 100644 --- a/mysql-test/suite/plugins/r/server_audit.result +++ b/mysql-test/suite/plugins/r/server_audit.result @@ -52,6 +52,7 @@ alter table t1 rename renamed_t1; set global server_audit_events='connect,query'; select 1, 2, +# comment 3; 1 2 3 1 2 3 @@ -170,7 +171,9 @@ id 2 CREATE USER u1 IDENTIFIED BY 'pwd-123'; GRANT ALL ON sa_db TO u2 IDENTIFIED BY "pwd-321"; -SET PASSWORD FOR u1 = PASSWORD('pwd 098'); +SET PASSWORD +# comment +FOR u1 = PASSWORD('pwd 098'); SET PASSWORD FOR u1=<secret>; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '<secret>' at line 1 CREATE USER u3 IDENTIFIED BY ''; @@ -262,7 +265,7 @@ TIME,HOSTNAME,root,localhost,ID,ID,WRITE,mysql,index_stats, TIME,HOSTNAME,root,localhost,ID,ID,RENAME,test,t1|test.renamed_t1, TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'alter table t1 rename renamed_t1',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'set global server_audit_events=\'connect,query\'',0 -TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select 1, 2, 3',0 +TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select 1,\n2,\n# comment\n3',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'insert into t2 values (1), (2)',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select * from t2',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select * from t_doesnt_exist',ID @@ -345,7 +348,7 @@ TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'/*! select 2*/',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'/*comment*/ select 2',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'CREATE USER u1 IDENTIFIED BY *****',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'GRANT ALL ON sa_db TO u2 IDENTIFIED BY *****',0 -TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'SET PASSWORD FOR u1 = PASSWORD(*****)',0 +TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'SET PASSWORD \n# comment\nFOR u1 = PASSWORD(*****)',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'SET PASSWORD FOR u1=<secret>',ID TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'CREATE USER u3 IDENTIFIED BY *****',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'drop user u1, u2, u3',0 diff --git a/mysql-test/suite/plugins/r/thread_pool_server_audit.result b/mysql-test/suite/plugins/r/thread_pool_server_audit.result index 45206c8bcb4..cf09ccb3a51 100644 --- a/mysql-test/suite/plugins/r/thread_pool_server_audit.result +++ b/mysql-test/suite/plugins/r/thread_pool_server_audit.result @@ -52,6 +52,7 @@ alter table t1 rename renamed_t1; set global server_audit_events='connect,query'; select 1, 2, +# comment 3; 1 2 3 1 2 3 @@ -170,7 +171,9 @@ id 2 CREATE USER u1 IDENTIFIED BY 'pwd-123'; GRANT ALL ON sa_db TO u2 IDENTIFIED BY "pwd-321"; -SET PASSWORD FOR u1 = PASSWORD('pwd 098'); +SET PASSWORD +# comment +FOR u1 = PASSWORD('pwd 098'); SET PASSWORD FOR u1=<secret>; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '<secret>' at line 1 CREATE USER u3 IDENTIFIED BY ''; @@ -262,7 +265,7 @@ TIME,HOSTNAME,root,localhost,ID,ID,WRITE,mysql,index_stats, TIME,HOSTNAME,root,localhost,ID,ID,RENAME,test,t1|test.renamed_t1, TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'alter table t1 rename renamed_t1',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'set global server_audit_events=\'connect,query\'',0 -TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select 1, 2, 3',0 +TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select 1,\n2,\n# comment\n3',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'insert into t2 values (1), (2)',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select * from t2',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,test,'select * from t_doesnt_exist',ID @@ -345,7 +348,7 @@ TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'/*! select 2*/',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'/*comment*/ select 2',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'CREATE USER u1 IDENTIFIED BY *****',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'GRANT ALL ON sa_db TO u2 IDENTIFIED BY *****',0 -TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'SET PASSWORD FOR u1 = PASSWORD(*****)',0 +TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'SET PASSWORD\n# comment\nFOR u1 = PASSWORD(*****)',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'SET PASSWORD FOR u1=<secret>',ID TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'CREATE USER u3 IDENTIFIED BY *****',0 TIME,HOSTNAME,root,localhost,ID,ID,QUERY,sa_db,'drop user u1, u2, u3',0 diff --git a/mysql-test/suite/plugins/t/server_audit.test b/mysql-test/suite/plugins/t/server_audit.test index 52428909c3b..9be0d5556f0 100644 --- a/mysql-test/suite/plugins/t/server_audit.test +++ b/mysql-test/suite/plugins/t/server_audit.test @@ -38,6 +38,7 @@ alter table t1 rename renamed_t1; set global server_audit_events='connect,query'; select 1, 2, +# comment 3; insert into t2 values (1), (2); select * from t2; @@ -106,7 +107,9 @@ insert into t1 values (1), (2); select * from t1; CREATE USER u1 IDENTIFIED BY 'pwd-123'; GRANT ALL ON sa_db TO u2 IDENTIFIED BY "pwd-321"; -SET PASSWORD FOR u1 = PASSWORD('pwd 098'); +SET PASSWORD +# comment +FOR u1 = PASSWORD('pwd 098'); --error 1064 SET PASSWORD FOR u1=<secret>; CREATE USER u3 IDENTIFIED BY ''; diff --git a/mysql-test/suite/plugins/t/thread_pool_server_audit.test b/mysql-test/suite/plugins/t/thread_pool_server_audit.test index 626d4136c47..724000c9789 100644 --- a/mysql-test/suite/plugins/t/thread_pool_server_audit.test +++ b/mysql-test/suite/plugins/t/thread_pool_server_audit.test @@ -38,6 +38,7 @@ alter table t1 rename renamed_t1; set global server_audit_events='connect,query'; select 1, 2, +# comment 3; insert into t2 values (1), (2); select * from t2; @@ -106,7 +107,9 @@ insert into t1 values (1), (2); select * from t1; CREATE USER u1 IDENTIFIED BY 'pwd-123'; GRANT ALL ON sa_db TO u2 IDENTIFIED BY "pwd-321"; -SET PASSWORD FOR u1 = PASSWORD('pwd 098'); +SET PASSWORD +# comment +FOR u1 = PASSWORD('pwd 098'); --error 1064 SET PASSWORD FOR u1=<secret>; CREATE USER u3 IDENTIFIED BY ''; diff --git a/mysql-test/suite/rpl/r/rpl_binlog_errors.result b/mysql-test/suite/rpl/r/rpl_binlog_errors.result index 06be72d523b..eb58dd06997 100644 --- a/mysql-test/suite/rpl/r/rpl_binlog_errors.result +++ b/mysql-test/suite/rpl/r/rpl_binlog_errors.result @@ -173,7 +173,7 @@ SET SQL_LOG_BIN=1; SET GLOBAL debug_dbug=@old_debug; ###################### TEST #10 call mtr.add_suppression("MYSQL_BIN_LOG::open failed to sync the index file."); -call mtr.add_suppression("Could not open .*"); +call mtr.add_suppression("Could not use .*"); RESET MASTER; SHOW WARNINGS; Level Code Message @@ -233,7 +233,7 @@ include/rpl_reset.inc connection slave; call mtr.add_suppression("Slave I/O: Relay log write failure: could not queue event from master.*"); call mtr.add_suppression("Error writing file .*"); -call mtr.add_suppression("Could not open .*"); +call mtr.add_suppression("Could not use .*"); call mtr.add_suppression("MYSQL_BIN_LOG::open failed to sync the index file."); call mtr.add_suppression("Can't generate a unique log-filename .*"); ###################### TEST #13 diff --git a/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_now_basic.result b/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_now_basic.result index 9c3a37f892b..522d5731a6d 100644 --- a/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_now_basic.result +++ b/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_now_basic.result @@ -1,7 +1,8 @@ -SET @orig = @@global.innodb_buffer_pool_dump_now; -SELECT @orig; -@orig +SELECT @@global.innodb_buffer_pool_dump_now; +@@global.innodb_buffer_pool_dump_now 0 +SELECT variable_value INTO @old_dump_status FROM information_schema.global_status +WHERE LOWER(variable_name) = 'innodb_buffer_pool_dump_status'; SET GLOBAL innodb_buffer_pool_dump_now = ON; SELECT @@global.innodb_buffer_pool_dump_now; @@global.innodb_buffer_pool_dump_now diff --git a/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_pct_basic.result b/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_pct_basic.result index 485136ccc4c..93a85ffbf43 100644 --- a/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_pct_basic.result +++ b/mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_pct_basic.result @@ -1,7 +1,9 @@ SET @orig = @@global.innodb_buffer_pool_dump_pct; -SELECT @@global.innodb_buffer_pool_dump_pct; -@@global.innodb_buffer_pool_dump_pct +SELECT @orig; +@orig 25 +SET GLOBAL innodb_buffer_pool_dump_pct=3; +# Do the dump SET GLOBAL innodb_buffer_pool_dump_pct=20; SELECT @@global.innodb_buffer_pool_dump_pct; @@global.innodb_buffer_pool_dump_pct diff --git a/mysql-test/suite/sys_vars/r/innodb_buffer_pool_load_now_basic.result b/mysql-test/suite/sys_vars/r/innodb_buffer_pool_load_now_basic.result index 3185d1ca170..eebed4d0f4a 100644 --- a/mysql-test/suite/sys_vars/r/innodb_buffer_pool_load_now_basic.result +++ b/mysql-test/suite/sys_vars/r/innodb_buffer_pool_load_now_basic.result @@ -1,8 +1,6 @@ -SET @orig = @@global.innodb_buffer_pool_load_now; -SELECT @orig; -@orig +SELECT @@global.innodb_buffer_pool_load_now; +@@global.innodb_buffer_pool_load_now 0 -SET GLOBAL innodb_buffer_pool_dump_now = ON; SET GLOBAL innodb_buffer_pool_load_now = ON; SELECT variable_value FROM information_schema.global_status diff --git a/mysql-test/suite/sys_vars/r/sysvars_server_embedded.result b/mysql-test/suite/sys_vars/r/sysvars_server_embedded.result index 418a7b19ed8..13ac908c288 100644 --- a/mysql-test/suite/sys_vars/r/sysvars_server_embedded.result +++ b/mysql-test/suite/sys_vars/r/sysvars_server_embedded.result @@ -3008,9 +3008,9 @@ READ_ONLY YES COMMAND_LINE_ARGUMENT REQUIRED VARIABLE_NAME PERFORMANCE_SCHEMA_MAX_STAGE_CLASSES SESSION_VALUE NULL -GLOBAL_VALUE 150 +GLOBAL_VALUE 160 GLOBAL_VALUE_ORIGIN COMPILE-TIME -DEFAULT_VALUE 150 +DEFAULT_VALUE 160 VARIABLE_SCOPE GLOBAL VARIABLE_TYPE BIGINT UNSIGNED VARIABLE_COMMENT Maximum number of stage instruments. diff --git a/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result b/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result index 06855b27f15..3d66d99429a 100644 --- a/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result +++ b/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result @@ -3218,9 +3218,9 @@ READ_ONLY YES COMMAND_LINE_ARGUMENT REQUIRED VARIABLE_NAME PERFORMANCE_SCHEMA_MAX_STAGE_CLASSES SESSION_VALUE NULL -GLOBAL_VALUE 150 +GLOBAL_VALUE 160 GLOBAL_VALUE_ORIGIN COMPILE-TIME -DEFAULT_VALUE 150 +DEFAULT_VALUE 160 VARIABLE_SCOPE GLOBAL VARIABLE_TYPE BIGINT UNSIGNED VARIABLE_COMMENT Maximum number of stage instruments. diff --git a/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_now_basic.test b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_now_basic.test index 0bae347428e..8c5f8fa7bf0 100644 --- a/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_now_basic.test +++ b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_now_basic.test @@ -5,8 +5,31 @@ -- source include/have_innodb.inc # Check the default value -SET @orig = @@global.innodb_buffer_pool_dump_now; -SELECT @orig; +SELECT @@global.innodb_buffer_pool_dump_now; + +-- let $file = `SELECT CONCAT(@@datadir, @@global.innodb_buffer_pool_filename)` +-- error 0,1 +-- remove_file $file + +SELECT variable_value INTO @old_dump_status FROM information_schema.global_status + WHERE LOWER(variable_name) = 'innodb_buffer_pool_dump_status'; + +# A previous test could have run buffer pool dump already; +# in this case we want to make sure that the current time is different +# from the timestamp in the status variable. +# We should have had a smart wait condition here, like the commented one below, +# let $wait_condition = +# SELECT TRIM(SUBSTR('$old_status', -8)) != DATE_FORMAT(CURTIME(), '%k:%i:%s'); +# -- source include/wait_condition.inc + +# ... but we can't because of MDEV-9867, so there will be just sleep instead. +# And it might be not enough to sleep one second, so we'll have to sleep two. + +if (`SELECT variable_value LIKE '%completed at%' FROM information_schema.global_status + WHERE LOWER(variable_name) = 'innodb_buffer_pool_dump_status'`) +{ + -- sleep 2 +} # Do the dump SET GLOBAL innodb_buffer_pool_dump_now = ON; @@ -15,11 +38,11 @@ SELECT @@global.innodb_buffer_pool_dump_now; # Wait for the dump to complete let $wait_condition = - SELECT SUBSTR(variable_value, 1, 33) = 'Buffer pool(s) dump completed at ' + SELECT variable_value != @old_dump_status + AND SUBSTR(variable_value, 1, 33) = 'Buffer pool(s) dump completed at ' FROM information_schema.global_status WHERE LOWER(variable_name) = 'innodb_buffer_pool_dump_status'; -- source include/wait_condition.inc # Confirm that the dump file has been created --- let $file = `SELECT CONCAT(@@datadir, @@global.innodb_buffer_pool_filename)` -- file_exists $file diff --git a/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_pct_basic.test b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_pct_basic.test index 99d3f79fb27..9b4edafb17e 100644 --- a/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_pct_basic.test +++ b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_pct_basic.test @@ -11,9 +11,17 @@ # Save the default value SET @orig = @@global.innodb_buffer_pool_dump_pct; +SELECT @orig; -# Check the default value -SELECT @@global.innodb_buffer_pool_dump_pct; +SET GLOBAL innodb_buffer_pool_dump_pct=3; + +--echo # Do the dump + +--disable_query_log +--disable_result_log +--source innodb_buffer_pool_dump_now_basic.test +--enable_result_log +--enable_query_log # Set the valid value SET GLOBAL innodb_buffer_pool_dump_pct=20; diff --git a/mysql-test/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.opt b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.opt new file mode 100644 index 00000000000..e462be3c368 --- /dev/null +++ b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.opt @@ -0,0 +1 @@ +--innodb-buffer-pool-load-at-startup=off diff --git a/mysql-test/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.test b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.test index a260dc2516b..15536d338e1 100644 --- a/mysql-test/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.test +++ b/mysql-test/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.test @@ -5,44 +5,22 @@ -- source include/have_innodb.inc # Check the default value -SET @orig = @@global.innodb_buffer_pool_load_now; -SELECT @orig; +SELECT @@global.innodb_buffer_pool_load_now; -let $old_status= `SELECT variable_value FROM information_schema.global_status - WHERE LOWER(variable_name) = 'innodb_buffer_pool_dump_status'`; +# Make sure there is a dump file to load -# A previous test could have run buffer pool dump already; -# in this case we want to make sure that the current time is different -# from the timestamp in the status variable. -# We should have had a smart wait condition here, like the commented one below, -# but we can't because of MDEV-9867, so there will be just sleep instead. -# And it might be not enough to sleep one second, so we'll have to sleep two. -# let $wait_condition = -# SELECT TRIM(SUBSTR('$old_status', -8)) != DATE_FORMAT(CURTIME(), '%k:%i:%s'); -# -- source include/wait_condition.inc -if (`SELECT count(*) > 0 FROM information_schema.global_status - WHERE (LOWER(variable_name) = 'innodb_buffer_pool_dump_status' or - LOWER(variable_name) = 'innodb_buffer_pool_load_status') - and variable_value LIKE '%completed at%'`) -{ - -- sleep 2 -} -# Do the dump -SET GLOBAL innodb_buffer_pool_dump_now = ON; - -# Wait for the dump to complete -let $wait_condition = - SELECT variable_value != '$old_status' - AND SUBSTR(variable_value, 1, 33) = 'Buffer pool(s) dump completed at ' - FROM information_schema.global_status - WHERE LOWER(variable_name) = 'innodb_buffer_pool_dump_status'; ---disable_warnings --- source include/wait_condition.inc ---enable_warnings - -# Confirm the file is really created -- let $file = `SELECT CONCAT(@@datadir, @@global.innodb_buffer_pool_filename)` +-- error 0,1 -- file_exists $file +if ($errno) +{ + # Dump file does not exist, get it created + --disable_query_log + --disable_result_log + --source innodb_buffer_pool_dump_now_basic.test + --enable_result_log + --enable_query_log +} let $old_load_status= `SELECT variable_value FROM information_schema.global_status diff --git a/mysql-test/suite/wsrep/disabled.def b/mysql-test/suite/wsrep/disabled.def index 8b137891791..c7c8f2c6216 100644 --- a/mysql-test/suite/wsrep/disabled.def +++ b/mysql-test/suite/wsrep/disabled.def @@ -1 +1,2 @@ +wsrep.foreign_key : Sporadic failure "WSREP has not yet prepared node for application use" diff --git a/mysql-test/t/cte_nonrecursive.test b/mysql-test/t/cte_nonrecursive.test index 57b7ae1658f..742e8f6e4d7 100644 --- a/mysql-test/t/cte_nonrecursive.test +++ b/mysql-test/t/cte_nonrecursive.test @@ -743,3 +743,50 @@ eval $q; eval explain $q; DROP TABLE t1,t2; + +--echo # +--echo # MDEV-13780: tower of embedding CTEs with multiple usage of them +--echo # + +create table t1 (a int); +insert into t1 values (3), (2), (4), (7), (1), (2), (5); + +let $q= +with cte_e as +( + with cte_o as + ( + with cte_i as (select * from t1 where a < 7) + select * from cte_i where a > 1 + ) + select * from cte_o as cto_o1 where a < 3 + union + select * from cte_o as cto_o2 where a > 4 +) +select * from cte_e as cte_e1 where a > 1 +union +select * from cte_e as cte_e2; + +eval $q; +eval explain extended $q; + +drop table t1; + +--echo # +--echo # MDEV-13753: embedded CTE in a VIEW created in prepared statement +--echo # + +SET @sql_query = " + CREATE OR REPLACE VIEW cte_test AS + WITH cte1 AS ( SELECT 1 as a from dual ) + , cte2 AS ( SELECT * FROM cte1 ) + SELECT * FROM cte2; +"; +PREPARE stmt FROM @sql_query; +EXECUTE stmt; +DEALLOCATE PREPARE stmt; + +SHOW CREATE VIEW cte_test; +SELECT * FROM cte_test; + +DROP VIEW cte_test; diff --git a/mysql-test/t/cte_recursive.test b/mysql-test/t/cte_recursive.test index 5701ee896cb..7d7600f0e88 100644 --- a/mysql-test/t/cte_recursive.test +++ b/mysql-test/t/cte_recursive.test @@ -1928,3 +1928,51 @@ set standard_compliant_cte=default; DROP TABLE t; +--echo # +--echo # mdev-14184: recursive CTE embedded into CTE with multiple references +--echo # + +WITH +cte1 AS ( + SELECT n FROM ( + WITH RECURSIVE rec_cte(n) AS ( + SELECT 1 as n1 + UNION ALL + SELECT n+1 as n2 FROM rec_cte WHERE n < 3 + ) SELECT n FROM rec_cte + ) AS X +), +cte2 as ( + SELECT 2 FROM cte1 +) +SELECT * +FROM cte1; + +--echo # +--echo # MDEV-14217 [db crash] Recursive CTE when SELECT includes new field +--echo # + +CREATE TEMPORARY TABLE a_tbl ( + a VARCHAR(33) PRIMARY KEY, + b VARCHAR(33) +); + +INSERT INTO a_tbl VALUES ('block0', 'block0'), ('block1', NULL); + +--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT +WITH RECURSIVE Q0 AS ( + SELECT T0.a, T0.b, 5 + FROM a_tbl T0 + WHERE b IS NULL + UNION ALL + SELECT T1.a, T1.b + FROM Q0 + JOIN a_tbl T1 + ON T1.a=Q0.a +) SELECT distinct(Q0.a), Q0.b + FROM Q0; +DROP TABLE a_tbl; + +--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT +WITH RECURSIVE x AS (SELECT 1,2 UNION ALL SELECT 1 FROM x) SELECT * FROM x; + diff --git a/mysql-test/t/delimiter_case_mdev_10728.sql b/mysql-test/t/delimiter_case_mdev_10728.sql new file mode 100644 index 00000000000..72a1dcd9a9e --- /dev/null +++ b/mysql-test/t/delimiter_case_mdev_10728.sql @@ -0,0 +1,3 @@ +DeLiMiTeR A; +SELECT 1 A; +delimiter ; diff --git a/mysql-test/t/delimiter_command_case_sensitivity.test b/mysql-test/t/delimiter_command_case_sensitivity.test new file mode 100644 index 00000000000..11d1cf75aa0 --- /dev/null +++ b/mysql-test/t/delimiter_command_case_sensitivity.test @@ -0,0 +1,4 @@ +source include/not_embedded.inc; + +# MDEV-10728 +--exec $MYSQL --default-character-set=binary < "t/delimiter_case_mdev_10728.sql" diff --git a/mysql-test/t/derived_cond_pushdown.test b/mysql-test/t/derived_cond_pushdown.test index c4f1ee7d734..a9bb998bc33 100644 --- a/mysql-test/t/derived_cond_pushdown.test +++ b/mysql-test/t/derived_cond_pushdown.test @@ -1550,6 +1550,23 @@ DROP VIEW v2; DROP TABLE t1,t2; --echo # +--echo # MDEV-14237: derived with regexp_substr() in select list +--echo # + +create table t1 (a char(8)); +insert into t1 values ('b'), ('a'), ('xx'); + +let $q= +select * +from ( select distinct regexp_substr(t1.a,'^[A-Za-z]+') as f from t1) as t +where t.f = 'a' or t.f = 'b'; + +eval $q; +eval explain format=json $q; + +drop table t1; + +--echo # --echo # MDEV-10855: Pushdown into derived with window functions --echo # @@ -1834,3 +1851,4 @@ SELECT * FROM v3 JOIN t1 ON (bmax = b); DROP VIEW v1,v2,v3; DROP TABLE t1,t2; + diff --git a/mysql-test/t/errors.test b/mysql-test/t/errors.test index 6836fc5803c..73d94d10382 100644 --- a/mysql-test/t/errors.test +++ b/mysql-test/t/errors.test @@ -213,3 +213,14 @@ select * from seq_1_to_1000; --enable_result_log # We may not be able to execute any more queries with this connection # because of too little memory# + + +--echo # +--echo # MDEV-14269 errors.test fails with valgrind (Conditional jump or move depends on uninitialised value) +--echo # + +SET NAMES utf8; +--error ER_DATA_OUT_OF_RANGE +SELECT UPDATEXML(-73 * -2465717823867977728,@@global.auto_increment_increment,null); +--error ER_DATA_OUT_OF_RANGE +SELECT UPDATEXML(-73 * -2465717823867977728,@@global.long_query_time,null); diff --git a/mysql-test/t/func_misc.test b/mysql-test/t/func_misc.test index ebfdced802b..91ee449a7ff 100644 --- a/mysql-test/t/func_misc.test +++ b/mysql-test/t/func_misc.test @@ -1104,6 +1104,23 @@ SELECT CONCAT(NAME_CONST('name',15),'오'); SET NAMES latin1; --echo # +--echo # MDEV-14116 INET6_NTOA output is set as null to varchar(39) variable +--echo # + +DELIMITER $$; +CREATE PROCEDURE p1() +BEGIN + DECLARE ip_full_addr varchar(39) DEFAULT ""; + SELECT INET6_NTOA(UNHEX('20000000000000000000000000000000')) into ip_full_addr; + SELECT ip_full_addr; +END; +$$ +DELIMITER ;$$ +CALL p1(); +DROP PROCEDURE p1; + + +--echo # --echo # Start of 10.2 tests --echo # diff --git a/mysql-test/t/having.test b/mysql-test/t/having.test index 160b347f870..3d8f7dc42b7 100644 --- a/mysql-test/t/having.test +++ b/mysql-test/t/having.test @@ -758,3 +758,83 @@ DROP VIEW v1; DROP TABLE t1; --echo End of 10.1 tests + +--echo # +--echo # MDEV-14093: GROUP BY with HAVING over function + ORDER BY +--echo # + +CREATE TABLE _authors ( + id MEDIUMINT(8) UNSIGNED AUTO_INCREMENT, + name VARCHAR(100), + some_field MEDIUMINT(8) UNSIGNED, + PRIMARY KEY (id), + index(some_field) +); + +CREATE TABLE _books ( + id MEDIUMINT(8) UNSIGNED AUTO_INCREMENT, + title VARCHAR(100), + PRIMARY KEY (id) +); +CREATE TABLE _books2authors ( + author_id MEDIUMINT(8) DEFAULT 0, + book_id MEDIUMINT(8) DEFAULT 0, + index(author_id), + index(book_id) +); + +INSERT INTO _authors (name, some_field) VALUES +('author1', 1),('author2', 2),('author3', 3); + +INSERT INTO _books (title) VALUES +('book1'),('book2'),('book3'); + +INSERT INTO _books2authors (author_id, book_id) VALUES +(2,1),(3,2),(3,3); + +SELECT A.id, + GROUP_CONCAT(B.title ORDER BY B.title DESC SEPARATOR ',') AS books, + some_field-1 AS having_field +FROM _authors A + LEFT JOIN _books2authors B2A FORCE INDEX(author_id) + ON B2A.author_id = A.id + LEFT JOIN + _books B ON B.id = B2A.book_id +GROUP BY A.id +HAVING having_field < 1 +ORDER BY having_field ASC; + +DROP TABLE _authors, _books, _books2authors; + +--echo # +--echo # Bug#17055185: WRONG RESULTS WHEN RUNNING A SELECT THAT INCLUDE +--echo # A HAVING BASED ON A FUNCTION. +--echo # + +# Generate series 1, 0, 1, 0.... +CREATE TABLE series ( + val INT(10) UNSIGNED NOT NULL +); +INSERT INTO series VALUES(1); + +DELIMITER |; +CREATE FUNCTION next_seq_value() RETURNS INT +BEGIN + DECLARE next_val INT; + SELECT val INTO next_val FROM series; + UPDATE series SET val=mod(val + 1, 2); + RETURN next_val; +END; +| +DELIMITER ;| + +CREATE TABLE t1 (t INT, u INT, KEY(t)); +INSERT INTO t1 VALUES(10, 10), (11, 11), (12, 12), (12, 13),(14, 15), (15, 16), + (16, 17), (17, 17); +ANALYZE TABLE t1; +SELECT t, next_seq_value() r FROM t1 FORCE INDEX(t) + GROUP BY t HAVING r = 1 ORDER BY t1.u; + +DROP TABLE t1; +DROP FUNCTION next_seq_value; +DROP TABLE series; diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 262013e0d2c..d84226460f2 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -423,7 +423,7 @@ create table t1 ( SHOW CREATE TABLE t1; DROP TABLE t1; -# Test for Bug#93 4.1 protocl crash on corupted frm and SHOW TABLE STATUS +# Test for Bug#93 4.1 protocol crash on corrupted frm and SHOW TABLE STATUS flush tables; @@ -437,7 +437,7 @@ show create table t1; --disable_warnings drop table if exists t1; --enable_warnings ---error 1,0 +--error 0,1 --remove_file $MYSQLD_DATADIR/test/t1.frm # diff --git a/mysql-test/t/subselect_exists2in.test b/mysql-test/t/subselect_exists2in.test index a4fdbe5c50b..5a8ddb3612f 100644 --- a/mysql-test/t/subselect_exists2in.test +++ b/mysql-test/t/subselect_exists2in.test @@ -786,6 +786,46 @@ set optimizer_switch= @optimizer_switch_save; DROP TABLE t1; +--echo # +--echo # MDEV-14164: Unknown column error when adding aggregate to function +--echo # in oracle style procedure FOR loop +--echo # + +CREATE TABLE t1(id INT, val INT); +DELIMITER //; +CREATE PROCEDURE p1() +BEGIN + DECLARE cur1 CURSOR FOR SELECT * FROM ( + SELECT DISTINCT id FROM t1) a + WHERE NOT EXISTS (SELECT * FROM ( SELECT id FROM t1) b + WHERE a.id=b.id); + OPEN cur1; + CLOSE cur1; + OPEN cur1; + CLOSE cur1; +END; +// +DELIMITER ;// +CALL p1(); +DROP PROCEDURE p1; +DROP TABLE t1; + +CREATE TABLE t1(id INT, val INT); +DELIMITER //; +CREATE PROCEDURE p1() +BEGIN + SELECT * FROM (SELECT DISTINCT id FROM t1) a + WHERE NOT a.id IN (SELECT b.id FROM t1 b); + SELECT * FROM (SELECT DISTINCT id FROM t1) a + WHERE NOT EXISTS (SELECT * FROM t1 b WHERE a.id=b.id); +END; +// +DELIMITER ;// +CALL p1(); +CALL p1(); +DROP PROCEDURE p1; +DROP TABLE t1; + --echo # End of 10.0 tests #restore defaults diff --git a/mysql-test/t/type_bit.test b/mysql-test/t/type_bit.test index 761f200fe0c..bb282fc15e5 100644 --- a/mysql-test/t/type_bit.test +++ b/mysql-test/t/type_bit.test @@ -439,3 +439,22 @@ SELECT SUM(a) FROM t1 GROUP BY c, b, a; DROP TABLE t1; --echo End of 5.1 tests + +--echo # +--echo # Start of 10.1 tests +--echo # + +--echo # +--echo # MDEV-8867 Wrong field type or metadata for COALESCE(bit_column, 1) +--echo # + +CREATE TABLE t1 (val bit(1)); +INSERT INTO t1 VALUES (0); +CREATE TABLE t2 AS SELECT COALESCE(val, 1) AS c FROM t1; +SELECT * FROM t2; +SHOW CREATE TABLE t2; +DROP TABLE t2; +--enable_metadata +SELECT COALESCE(val, 1) FROM t1; +--disable_metadata +DROP TABLE t1; diff --git a/mysql-test/t/type_date.test b/mysql-test/t/type_date.test index 7c4af618c23..8d29a54a26c 100644 --- a/mysql-test/t/type_date.test +++ b/mysql-test/t/type_date.test @@ -582,6 +582,15 @@ SELECT DATE(a), DATE(b), DATE(c) FROM t1; SELECT DATE(COALESCE(a)), DATE(COALESCE(b)), DATE(COALESCE(c)) FROM t1; DROP TABLE t1; +--echo # +--echo # MDEV-14221 Assertion `0' failed in Item::field_type_for_temporal_comparison +--echo # + +CREATE TABLE t1 (d DATE); +INSERT INTO t1 VALUES ('1985-05-13'),('1989-12-24'); +SELECT d, COUNT(*) FROM t1 GROUP BY d WITH ROLLUP HAVING CASE d WHEN '2017-05-25' THEN 0 ELSE 1 END; +DROP TABLE t1; + --echo # --echo # End of 10.1 tests diff --git a/mysql-test/t/type_time.test b/mysql-test/t/type_time.test index 6662a3d9bb0..5f3f58df166 100644 --- a/mysql-test/t/type_time.test +++ b/mysql-test/t/type_time.test @@ -747,6 +747,17 @@ DROP TABLE t1,t2; --echo # +--echo # MDEV-10817 CAST(MAX(DATE'2001-01-01') AS TIME) returns a wrong result +--echo # + +SELECT CAST(DATE'2001-01-01' AS TIME); +SELECT CAST(MAX(DATE'2001-01-01') AS TIME); +CREATE FUNCTION f1() RETURNS DATE RETURN DATE'2001-01-01'; +SELECT CAST(f1() AS TIME); +DROP FUNCTION f1; + + +--echo # --echo # End of 10.2 tests --echo # diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test index 4850b6c06cb..847fb843ec8 100644 --- a/mysql-test/t/view.test +++ b/mysql-test/t/view.test @@ -1,3 +1,4 @@ +--source include/have_partition.inc # Save the initial number of concurrent sessions. --source include/count_sessions.inc diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp index 215afda36ee..3def1bd083b 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -1247,6 +1247,13 @@ } { + Galera uses gcc __thread variables + Memcheck:Leak + fun:memalign + fun:__tls_get_addr +} + +{ Mroonga: dlopen leaves some "still reachable" Memcheck:Leak fun:malloc @@ -1747,8 +1754,10 @@ match-leak-kinds: reachable fun:malloc fun:CRYPTO_malloc - fun:ENGINE_ADD + ... + fun:ENGINE_add } + { OPENSSL 1.0.1k crypto leak Memcheck:Leak @@ -1757,14 +1766,3 @@ fun:CRYPTO_malloc fun:ENGINE_new } - -{ - OPENSSL 1.0.1k crypto leak2 - Memcheck:Leak - match-leak-kinds: reachable - fun:malloc - fun:CRYPTO_malloc - fun:sk_new - obj:/lib64/libcrypto.so* - fun:ENGINE_ADD -} |