~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/t/connect.test

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
293
293
--echo # -- End of Bug#35074.
294
294
--echo
295
295
 
 
296
 
 
297
###########################################################################
 
298
 
 
299
--echo #
 
300
--echo # -- Bug#49752: 2469.126.2 unintentionally breaks authentication
 
301
--echo #               against MySQL 5.1 server
 
302
--echo #
 
303
 
 
304
GRANT ALL ON test.* TO 'Azundris12345678'@'localhost' IDENTIFIED BY 'test123';
 
305
 
 
306
FLUSH PRIVILEGES;
 
307
 
 
308
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
 
309
connect (con1,localhost,Azundris123456789,test123,test);
 
310
disconnect con1;
 
311
 
 
312
connection default;
 
313
 
 
314
DROP USER 'Azundris12345678'@'localhost';
 
315
 
 
316
FLUSH PRIVILEGES;
 
317
 
 
318
--echo #
 
319
--echo # -- End of Bug#49752
 
320
--echo #
 
321
 
 
322
 
 
323
 
296
324
--echo # ------------------------------------------------------------------
297
325
--echo # -- End of 5.1 tests
298
326
--echo # ------------------------------------------------------------------