Skip to content

Commit da99dee

Browse files
committed
Merge pull request docker-library#3 from mysql/revert-2-patch-1
Revert "Fix for bug#81723"
2 parents 478010b + 56d263f commit da99dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

5.7/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ if [ "$1" = 'mysqld' ]; then
5454
-- What's done in this file shouldn't be replicated
5555
-- or products like mysql-fabric won't work
5656
SET @@SESSION.SQL_LOG_BIN=0;
57-
DELETE FROM mysql.user where user NOT IN ('mysql.sys', 'mysqlxsys');
57+
DELETE FROM mysql.user where user != 'mysql.sys';
5858
CREATE USER 'root'@'%' IDENTIFIED BY '${MYSQL_ROOT_PASSWORD}' ;
5959
GRANT ALL ON *.* TO 'root'@'%' WITH GRANT OPTION ;
6060
DROP DATABASE IF EXISTS test ;

0 commit comments

Comments
 (0)