mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Backport BUG#34227 Replication permission error message is misleading
According to Jon's comment, add (at least one of) to the error message.
This commit is contained in:
@ -3554,11 +3554,11 @@ use test;
|
|||||||
create user mysqltest_1@localhost;
|
create user mysqltest_1@localhost;
|
||||||
create table t1(a int, b varchar(34));
|
create table t1(a int, b varchar(34));
|
||||||
reset master;
|
reset master;
|
||||||
mysqldump: Couldn't execute 'FLUSH /*!40101 LOCAL */ TABLES': Access denied; you need the RELOAD privilege for this operation (1227)
|
mysqldump: Couldn't execute 'FLUSH /*!40101 LOCAL */ TABLES': Access denied; you need (at least one of) the RELOAD privilege(s) for this operation (1227)
|
||||||
mysqldump: Couldn't execute 'FLUSH /*!40101 LOCAL */ TABLES': Access denied; you need the RELOAD privilege for this operation (1227)
|
mysqldump: Couldn't execute 'FLUSH /*!40101 LOCAL */ TABLES': Access denied; you need (at least one of) the RELOAD privilege(s) for this operation (1227)
|
||||||
grant RELOAD on *.* to mysqltest_1@localhost;
|
grant RELOAD on *.* to mysqltest_1@localhost;
|
||||||
mysqldump: Couldn't execute 'SHOW MASTER STATUS': Access denied; you need the SUPER,REPLICATION CLIENT privilege for this operation (1227)
|
mysqldump: Couldn't execute 'SHOW MASTER STATUS': Access denied; you need (at least one of) the SUPER,REPLICATION CLIENT privilege(s) for this operation (1227)
|
||||||
mysqldump: Couldn't execute 'SHOW MASTER STATUS': Access denied; you need the SUPER,REPLICATION CLIENT privilege for this operation (1227)
|
mysqldump: Couldn't execute 'SHOW MASTER STATUS': Access denied; you need (at least one of) the SUPER,REPLICATION CLIENT privilege(s) for this operation (1227)
|
||||||
grant REPLICATION CLIENT on *.* to mysqltest_1@localhost;
|
grant REPLICATION CLIENT on *.* to mysqltest_1@localhost;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
drop user mysqltest_1@localhost;
|
drop user mysqltest_1@localhost;
|
||||||
|
@ -4620,7 +4620,7 @@ ER_USER_LIMIT_REACHED 42000
|
|||||||
swe "Anv<6E>ndare '%-.64s' har <20>verskridit '%s' (nuvarande v<>rde: %ld)"
|
swe "Anv<6E>ndare '%-.64s' har <20>verskridit '%s' (nuvarande v<>rde: %ld)"
|
||||||
ER_SPECIFIC_ACCESS_DENIED_ERROR 42000
|
ER_SPECIFIC_ACCESS_DENIED_ERROR 42000
|
||||||
nla "Toegang geweigerd. U moet het %-.128s privilege hebben voor deze operatie"
|
nla "Toegang geweigerd. U moet het %-.128s privilege hebben voor deze operatie"
|
||||||
eng "Access denied; you need the %-.128s privilege for this operation"
|
eng "Access denied; you need (at least one of) the %-.128s privilege(s) for this operation"
|
||||||
ger "Kein Zugriff. Hierf<72>r wird die Berechtigung %-.128s ben<65>tigt"
|
ger "Kein Zugriff. Hierf<72>r wird die Berechtigung %-.128s ben<65>tigt"
|
||||||
ita "Accesso non consentito. Serve il privilegio %-.128s per questa operazione"
|
ita "Accesso non consentito. Serve il privilegio %-.128s per questa operazione"
|
||||||
por "Acesso negado. Voc<6F> precisa o privil<69>gio %-.128s para essa opera<72><61>o"
|
por "Acesso negado. Voc<6F> precisa o privil<69>gio %-.128s para essa opera<72><61>o"
|
||||||
|
Reference in New Issue
Block a user