File tree 1 file changed +4
-9
lines changed
1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -79,19 +79,14 @@ jobs:
79
79
# from `caching_sha2_password` that is the default in MySQL 8 because
80
80
# Connector/J 5.x does not support `caching_sha2_password`.
81
81
# TODO: Start testing with `caching_sha2_password` with Connector/J 8.x.
82
- - name : Show password plugins
83
- run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "SELECT user, host, plugin FROM mysql.user;"
84
- - name : Change password mechanism1 (root@localhost)
82
+ #
83
+ # See also: https://dev. mysql.com/doc/refman/8.4/en/account-names.html
84
+ - name : Change password (root@localhost)
85
85
run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';"
86
- - name : Change password mechanism2 (root@%)
86
+ - name : Change password (root@%)
87
87
run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';"
88
88
- name : FLUSH PRIVILEGES
89
89
run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "FLUSH PRIVILEGES;"
90
- - name : Show password plugins2
91
- run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "SELECT user, host, plugin FROM mysql.user;"
92
- #
93
- # End caching_sha2_password workaround.
94
- #
95
90
- name : Build with testing
96
91
run : ./gradlew --stacktrace :embulk-output-mysql:check
97
92
env :
You can’t perform that action at this time.
0 commit comments