mirror of
https://github.com/MariaDB/server.git
synced 2025-09-03 20:43:11 +03:00
Add missing semicolon after connect command
This commit is contained in:
@@ -890,7 +890,7 @@ REVOKE EXECUTE ON PROCEDURE t1 FROM some_user_name@1234567890abcdefghij123456789
|
|||||||
# Bug #6774: Replication fails with Wrong usage of DB GRANT and GLOBAL PRIVILEGES
|
# Bug #6774: Replication fails with Wrong usage of DB GRANT and GLOBAL PRIVILEGES
|
||||||
#
|
#
|
||||||
# Check if GRANT ... ON * ... fails when no database is selected
|
# Check if GRANT ... ON * ... fails when no database is selected
|
||||||
connect (con1, localhost, root,,*NO-ONE*)
|
connect (con1, localhost, root,,*NO-ONE*);
|
||||||
connection con1;
|
connection con1;
|
||||||
--error ER_NO_DB_ERROR
|
--error ER_NO_DB_ERROR
|
||||||
GRANT PROCESS ON * TO user@localhost;
|
GRANT PROCESS ON * TO user@localhost;
|
||||||
|
@@ -56,7 +56,7 @@ START SLAVE;
|
|||||||
|
|
||||||
# Reconnect to master for new setting to take effect
|
# Reconnect to master for new setting to take effect
|
||||||
disconnect master;
|
disconnect master;
|
||||||
connect (master, localhost, root)
|
connect (master, localhost, root);
|
||||||
connection master;
|
connection master;
|
||||||
|
|
||||||
CREATE TABLe `t1` (`f1` LONGTEXT) ENGINE=MyISAM;
|
CREATE TABLe `t1` (`f1` LONGTEXT) ENGINE=MyISAM;
|
||||||
|
Reference in New Issue
Block a user