~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/auth_test/tests/r/basic.result

  • Committer: Padraig O'Sullivan
  • Date: 2010-04-17 01:38:47 UTC
  • mfrom: (1237.9.238 bad-staging)
  • Revision ID: osullivan.padraig@gmail.com-20100417013847-ibjioqsfbmf5yg4g
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
connect(localhost,,,test,MASTER_PORT,);
 
2
ERROR 28000: Access denied for user ''@'LOCALHOST' (using password: NO)
 
3
connect(localhost,password_ok,,test,MASTER_PORT,);
 
4
ERROR 28000: Access denied for user 'password_ok'@'LOCALHOST' (using password: NO)
 
5
SELECT 1;
 
6
1
 
7
1
 
8
connect(localhost,no_password_ok,test,test,MASTER_PORT,);
 
9
ERROR 28000: Access denied for user 'no_password_ok'@'LOCALHOST' (using password: YES)
 
10
SELECT 1;
 
11
1
 
12
1
 
13
connect(localhost,scramble_ok,,test,MASTER_PORT,);
 
14
ERROR 28000: Access denied for user 'scramble_ok'@'LOCALHOST' (using password: NO)
 
15
connect(localhost,scramble_ok,bad_scramble,test,MASTER_PORT,);
 
16
ERROR 28000: Access denied for user 'scramble_ok'@'LOCALHOST' (using password: YES)
 
17
SELECT 1;
 
18
1
 
19
1