~vkolesnikov/pbxt/pbxt-bug-688404

« back to all changes in this revision

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

  • Committer: paul-mccullagh
  • Date: 2006-10-23 09:14:04 UTC
  • Revision ID: paul-mccullagh-918861e03d351978a9541168a96e58cc826734ee
Initial import

Show diffs side-by-side

added added

removed removed

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