diff options
author | unknown <msvensson@pilot.(none)> | 2007-06-01 13:39:54 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.(none)> | 2007-06-01 13:39:54 +0200 |
commit | 3b74591e36d87d288790558ea70f1009792401a4 (patch) | |
tree | 58a4b18e8fe43ef7affc873d9ff69db0e9620b44 | |
parent | 4e2283f4ba9a448e93bd4503b947ecd3f8683417 (diff) | |
download | mariadb-git-3b74591e36d87d288790558ea70f1009792401a4.tar.gz |
Add missing semicolon after connect command
-rw-r--r-- | mysql-test/t/grant.test | 2 | ||||
-rw-r--r-- | mysql-test/t/rpl_packet.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/grant.test b/mysql-test/t/grant.test index aa43e4225c5..32eb262fd51 100644 --- a/mysql-test/t/grant.test +++ b/mysql-test/t/grant.test @@ -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 # # Check if GRANT ... ON * ... fails when no database is selected -connect (con1, localhost, root,,*NO-ONE*) +connect (con1, localhost, root,,*NO-ONE*); connection con1; --error ER_NO_DB_ERROR GRANT PROCESS ON * TO user@localhost; diff --git a/mysql-test/t/rpl_packet.test b/mysql-test/t/rpl_packet.test index db6f475dc94..f410b561663 100644 --- a/mysql-test/t/rpl_packet.test +++ b/mysql-test/t/rpl_packet.test @@ -56,7 +56,7 @@ START SLAVE; # Reconnect to master for new setting to take effect disconnect master; -connect (master, localhost, root) +connect (master, localhost, root); connection master; CREATE TABLe `t1` (`f1` LONGTEXT) ENGINE=MyISAM; |