Bug#20166 mysql-test-run.pl does not test system privilege tables creation

 - Updates for 5.1
parent f6e31a2c
......@@ -123,6 +123,10 @@ drop table t1;
#
# Bug#16986 - Deadlock condition with MyISAM tables
#
# Need a matching user in mysql.user for multi-table select
--source include/add_anonymous_users.inc
connection locker;
use mysql;
LOCK TABLES columns_priv WRITE, db WRITE, host WRITE, user WRITE;
......@@ -199,6 +203,8 @@ UNLOCK TABLES;
connection default;
DROP TABLE t1;
--source include/delete_anonymous_users.inc
#
# Bug#19815 - CREATE/RENAME/DROP DATABASE can deadlock on a global read lock
#
......
# Test need anonymous user when connection are made as "zedjzlcsjhd"
source include/add_anonymous_users.inc;
-- source include/master-slave.inc
......@@ -200,4 +202,7 @@ select * from t1;
connection master;
drop table t1;
# Delete the anonymous users
source include/delete_anonymous_users.inc;
# End of 5.1 tests
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment