1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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

- Updates for 5.1
This commit is contained in:
msvensson@pilot.blaudden
2007-02-27 11:39:29 +01:00
parent f6e31a2cd1
commit 846e5ad8d3
3 changed files with 42 additions and 9 deletions

View File

@ -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
#

View File

@ -1,3 +1,5 @@
# 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