mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
5f0510225a
Don't let SET PASSWORD to set the password, if auth_string is set. Now SET PASSWORD always sets the plugin/auth_string fields and clears the password field (on pre-plugin mysql.user table it works as before).
13 lines
516 B
SQL
13 lines
516 B
SQL
#########################################
|
|
# Author: Serge Kozlov skozlov@mysql.com
|
|
# Date: 07/10/2006
|
|
# Purpose: Showing user info on master and on slave
|
|
# Requirements:
|
|
#########################################
|
|
|
|
SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%';
|
|
sync_slave_with_master;
|
|
USE test_rpl;
|
|
SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%';
|
|
connection master;
|
|
|