mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
P_S 5.7.28
This commit is contained in:
@ -16,7 +16,12 @@ create user 'quota'@'santa.claus.ipv6.example.com';
|
||||
grant select on test.* to 'quota'@'santa.claus.ipv6.example.com';
|
||||
grant usage on *.* to 'quota'@'santa.claus.ipv6.example.com'
|
||||
with max_connections_per_hour 3;
|
||||
<<<<<<< HEAD
|
||||
connect con1,"::1",root,,test,$MASTER_MYPORT,;
|
||||
=======
|
||||
Warnings:
|
||||
Warning 1287 Using GRANT statement to modify existing user's properties other than privileges is deprecated and will be removed in future release. Use ALTER USER statement for this operation.
|
||||
>>>>>>> merge-perfschema-5.7
|
||||
select "Con1 is alive";
|
||||
Con1 is alive
|
||||
Con1 is alive
|
||||
@ -200,8 +205,12 @@ FIRST_ERROR_SEEN set
|
||||
LAST_ERROR_SEEN set
|
||||
grant usage on *.* to 'quota'@'santa.claus.ipv6.example.com'
|
||||
with max_connections_per_hour 0;
|
||||
Warnings:
|
||||
Warning 1287 Using GRANT statement to modify existing user's properties other than privileges is deprecated and will be removed in future release. Use ALTER USER statement for this operation.
|
||||
grant usage on *.* to 'quota'@'santa.claus.ipv6.example.com'
|
||||
with max_user_connections 3;
|
||||
Warnings:
|
||||
Warning 1287 Using GRANT statement to modify existing user's properties other than privileges is deprecated and will be removed in future release. Use ALTER USER statement for this operation.
|
||||
flush user_resources;
|
||||
connect con3a,"::1",quota,,test,$MASTER_MYPORT,;
|
||||
select "Con7 is alive";
|
||||
@ -376,6 +385,8 @@ disconnect con3b;
|
||||
disconnect con3c;
|
||||
grant usage on *.* to 'quota'@'santa.claus.ipv6.example.com'
|
||||
with max_user_connections 0;
|
||||
Warnings:
|
||||
Warning 1287 Using GRANT statement to modify existing user's properties other than privileges is deprecated and will be removed in future release. Use ALTER USER statement for this operation.
|
||||
flush user_resources;
|
||||
set global max_user_connections = 3;
|
||||
connect con4a,"::1",quota,,test,$MASTER_MYPORT,;
|
||||
|
Reference in New Issue
Block a user