mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge performance schema test cases from MySQL 5.6.10
Merged the majority of the PFS test cases. There are still 19 failing test cases that need more attention.
This commit is contained in:
@ -1,9 +1,28 @@
|
||||
call mtr.add_suppression("192.0.2.4");
|
||||
flush status;
|
||||
flush hosts;
|
||||
flush user_resources;
|
||||
flush privileges;
|
||||
select @@global.debug;
|
||||
@@global.debug
|
||||
|
||||
select @@global.max_connect_errors;
|
||||
@@global.max_connect_errors
|
||||
100
|
||||
select @@global.max_user_connections;
|
||||
@@global.max_user_connections
|
||||
0
|
||||
select @@global.max_connections;
|
||||
@@global.max_connections
|
||||
151
|
||||
select `User`, `Host` from mysql.`user` where `host` like '%\\%%';
|
||||
User Host
|
||||
select `User`, `Host` from mysql.`user` where `user` like '192.%';
|
||||
User Host
|
||||
select `User`, `Host` from mysql.`user` where `user` like '2001:%';
|
||||
User Host
|
||||
select `User`, `Host` from mysql.`user` where `user` like 'santa.claus.%';
|
||||
User Host
|
||||
grant select on test.* to 'root'@'santa.claus.ipv4.example.com';
|
||||
select "Con1 is alive";
|
||||
Con1 is alive
|
||||
|
Reference in New Issue
Block a user