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:
@ -8,6 +8,8 @@ set global session_track_schema=FALSE;
|
||||
# - the test might abort
|
||||
#
|
||||
# 0. Check, build or set prequisites
|
||||
Warnings:
|
||||
Warning 1681 'performance_schema.setup_timers' is deprecated and will be removed in a future release.
|
||||
UPDATE performance_schema.threads
|
||||
SET INSTRUMENTED='NO' WHERE PROCESSLIST_ID = CONNECTION_ID();
|
||||
# 1. Basic checks
|
||||
@ -34,14 +36,38 @@ ERROR 28000: Access denied for user 'boot0123456789'@'localhost' (using password
|
||||
# 2.5 Connect should pass, host = localhost
|
||||
# length of user name = 10 character
|
||||
# length of default db = 9 character
|
||||
<<<<<<< HEAD
|
||||
CREATE USER 'root012345'@'localhost';
|
||||
=======
|
||||
SET @orig_sql_mode= @@sql_mode;
|
||||
SET sql_mode= (SELECT replace(@@sql_mode,'NO_AUTO_CREATE_USER',''));
|
||||
Warnings:
|
||||
Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release.
|
||||
>>>>>>> merge-perfschema-5.7
|
||||
GRANT ALL PRIVILEGES ON *.* TO 'root012345'@'localhost';
|
||||
Warnings:
|
||||
Warning 1287 Using GRANT for creating new user is deprecated and will be removed in future release. Create new user with CREATE USER statement.
|
||||
SET sql_mode= @orig_sql_mode;
|
||||
Warnings:
|
||||
Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release.
|
||||
DROP USER 'root012345'@'localhost';
|
||||
# 2.6 Connect should pass, host = localhost
|
||||
# length of user name = 14 character
|
||||
# length of default db = 9 character
|
||||
<<<<<<< HEAD
|
||||
CREATE USER 'root0123456789'@'localhost';
|
||||
=======
|
||||
SET @orig_sql_mode= @@sql_mode;
|
||||
SET sql_mode= (SELECT replace(@@sql_mode,'NO_AUTO_CREATE_USER',''));
|
||||
Warnings:
|
||||
Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release.
|
||||
>>>>>>> merge-perfschema-5.7
|
||||
GRANT ALL PRIVILEGES ON *.* to 'root0123456789'@'localhost';
|
||||
Warnings:
|
||||
Warning 1287 Using GRANT for creating new user is deprecated and will be removed in future release. Create new user with CREATE USER statement.
|
||||
SET sql_mode= @orig_sql_mode;
|
||||
Warnings:
|
||||
Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release.
|
||||
DROP USER 'root0123456789'@'localhost';
|
||||
# 2.7 Connect should pass, host = my_localhost
|
||||
# length of user name = 4 character
|
||||
@ -208,7 +234,9 @@ connection default;
|
||||
# server_unix_socket are already checked
|
||||
# - the stability of results is already checked
|
||||
# So we con go with the results of the first run.
|
||||
# 4.6.1 The SUM_OF_BYTES_WRITE value is the same for all Connects.
|
||||
# 4.6.1 The SUM_OF_BYTES_WRITE value depends on length of database
|
||||
# since the database name is written in OK packet.
|
||||
# Hence the value 2.
|
||||
# 4.6.2 The SUM_OF_BYTES_WRITE value hast to be > 100.
|
||||
# 4.6.3 COUNT_READ, COUNT_WRITE and COUNT_MISC have to be to be > 0
|
||||
# 4.6.4 Checks based on comparison of results for connects
|
||||
|
Reference in New Issue
Block a user