mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02: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:
parent
30e34252f4
commit
54999b2863
196 changed files with 2423 additions and 829 deletions
|
|
@ -1,9 +1,27 @@
|
|||
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
|
||||
create user 'user_without'@'santa.claus.ipv4.example.com';
|
||||
create user 'user_with'@'santa.claus.ipv4.example.com'
|
||||
identified by 'good_password';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue