~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/lowercase_fs_off.result

  • Committer: Monty Taylor
  • Date: 2008-07-05 17:09:05 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705170905-itvcfiincapslw9w
Removed redundant declaration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
create database d1;
 
2
grant all on d1.* to 'sample'@'localhost' identified by 'password';
 
3
flush privileges;
2
4
select database();
3
5
database()
4
6
d1
5
7
create database d2;
 
8
ERROR 42000: Access denied for user 'sample'@'localhost' to database 'd2'
6
9
create database D1;
7
 
ERROR HY000: Can't create database 'd1'; database exists
8
 
drop database d2;
9
 
drop database d1;
 
10
ERROR 42000: Access denied for user 'sample'@'localhost' to database 'D1'
 
11
drop user 'sample'@'localhost';
 
12
drop database if exists d1;