~vkolesnikov/pbxt/pbxt-07-diskfull

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/t/lowercase_fs_off.test

  • 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
#
 
2
# Specific tests for case sensitive file systems
 
3
# i.e. lower_case_filesystem=OFF
 
4
#
 
5
-- source include/have_case_sensitive_file_system.inc
 
6
 
 
7
connect (master,localhost,root,,);
 
8
connection master;
 
9
create database d1;
 
10
grant all on d1.* to 'sample'@'localhost' identified by 'password';
 
11
flush privileges;
 
12
 
 
13
connect (sample,localhost,sample,password,d1);
 
14
connection sample;
 
15
select database();
 
16
--error 1044
 
17
create database d2;
 
18
--error 1044
 
19
create database D1;
 
20
disconnect sample;
 
21
 
 
22
connection master;
 
23
drop database if exists d1;
 
24
disconnect master;
 
25
connection default;
 
26
 
 
27
# End of 4.1 tests