summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_temporary.test
diff options
context:
space:
mode:
authorunknown <guilhem@mysql.com>2003-06-12 23:16:21 +0200
committerunknown <guilhem@mysql.com>2003-06-12 23:16:21 +0200
commit9ba894a6ac14659adeecaba33252d4ce67e72fae (patch)
tree51be220860f9ce442a3066133256e9b22896534e /mysql-test/t/rpl_temporary.test
parent069d98db5b339a45cdce9f8a86a21f17612dd429 (diff)
downloadmariadb-git-9ba894a6ac14659adeecaba33252d4ce67e72fae.tar.gz
user change to avoid conflicts with user 'test'
mysql-test/t/rpl_temporary.test: user change to avoid conflicts with user 'test' (to which test connect.test gives password "gambling", so depending on the order of the tests, 'test' has password '' or 'gambling': better to use an unknown user which will be directed to ''@localhost with password always '').
Diffstat (limited to 'mysql-test/t/rpl_temporary.test')
-rw-r--r--mysql-test/t/rpl_temporary.test4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/t/rpl_temporary.test b/mysql-test/t/rpl_temporary.test
index 442788ad019..b50d9004f14 100644
--- a/mysql-test/t/rpl_temporary.test
+++ b/mysql-test/t/rpl_temporary.test
@@ -19,7 +19,9 @@ connection master;
connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
-connect (con3,localhost,test,,);
+# user 'boo' does not exist, because we want to be ''@localhost or ''@127.0.0.1
+# (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;
# check that it requires the SUPER privilege.