Commit 24388eb8 authored by unknown's avatar unknown

mysql_real_connect picks the Unix login when the user "" is used.

 This makes the test non-repeatable when running as root.
 So I change to not use the "" user, but a random string which will
 always result in the @localhost user being selected by the server.


mysql-test/t/rpl_temporary.test:
  mysql_real_connect picks the Unix login when the user "" is used.
  This makes the test non-repeatable when running as root.
  So I change to not use the "" user, but a random string which will
  always result in the @localhost user being selected by the server.
parent 2d106ed6
...@@ -19,7 +19,10 @@ connection master; ...@@ -19,7 +19,10 @@ connection master;
connect (con1,localhost,root,,); connect (con1,localhost,root,,);
connect (con2,localhost,root,,); connect (con2,localhost,root,,);
connect (con3,localhost,,,); # We want to connect as an unprivileged user. But if we use user="" then this
# will pick the Unix login, which will cause problems if you're running the test
# as root.
connect (con3,localhost,zedjzlcsjhd,,);
# 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.
......
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