cleaned user used in tests 'connect' and 'rpl_temporary'
This commit is contained in:
parent
8a0508495d
commit
adb9cf36bf
@ -44,3 +44,5 @@ tables_priv
|
|||||||
user
|
user
|
||||||
show tables;
|
show tables;
|
||||||
Tables_in_test
|
Tables_in_test
|
||||||
|
delete from mysql.user where user="test";
|
||||||
|
flush privileges;
|
||||||
|
@ -62,3 +62,8 @@ show tables;
|
|||||||
#--error 1045
|
#--error 1045
|
||||||
#connect (con1,localhost,test,zorro,);
|
#connect (con1,localhost,test,zorro,);
|
||||||
#--error 1045
|
#--error 1045
|
||||||
|
|
||||||
|
# remove user 'test' so that other tests which may use 'test'
|
||||||
|
# do not depend on this test.
|
||||||
|
delete from mysql.user where user="test";
|
||||||
|
flush privileges;
|
||||||
|
@ -19,9 +19,7 @@ connection master;
|
|||||||
|
|
||||||
connect (con1,localhost,root,,);
|
connect (con1,localhost,root,,);
|
||||||
connect (con2,localhost,root,,);
|
connect (con2,localhost,root,,);
|
||||||
# user 'boo' does not exist, because we want to be ''@localhost or ''@127.0.0.1
|
connect (con3,localhost,,,);
|
||||||
# (using user 'test' conflicts with what connect.test does).
|
|
||||||
connect (con3,localhost,boo,,);
|
|
||||||
|
|
||||||
# We are going to use SET PSEUDO_THREAD_ID in this test;
|
# We are going to use SET PSEUDO_THREAD_ID in this test;
|
||||||
# check that it requires the SUPER privilege.
|
# check that it requires the SUPER privilege.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user