--source include/not_embedded.inc --source include/have_perfschema.inc # # MDEV-22884 Assertion `grant_table || grant_table_role' failed on perfschema # create user a@localhost; connect a,localhost,a; select * from performance_schema.global_status where variable_name='b'; connection default; disconnect a; drop user a@localhost; --echo # --echo # MDEV-35384 Table performance_schema.session_status and other two tables are not shown in information_schema.tables for normal users --echo # create user foo@localhost; connect foo,localhost,foo; sorted_result; select table_schema,engine from information_schema.tables where table_name='session_status'; select count(*) > 0 as 'table is readable' from performance_schema.session_status; connection default; disconnect foo; drop user foo@localhost; --echo # End of 10.6 tests