~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lowercase_fs_off.test

  • Committer: Brian Aker
  • Date: 2010-05-27 01:25:56 UTC
  • mfrom: (1567.1.4 new-staging)
  • Revision ID: brian@gaz-20100527012556-5zgkirkl7swbigd6
Merge of Brian, Paul. PBXT compile issue, and test framework cleanup. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# Specific tests for case sensitive file systems
3
3
# i.e. lower_case_filesystem=OFF
4
4
#
5
5
 
6
6
connect (master,localhost,root,,);
7
7
connection master;
8
8
create database d1;
9
 
grant all on d1.* to 'sample'@'localhost' identified by 'password';
10
 
flush privileges;
11
9
 
12
10
connect (sample,localhost,sample,password,d1);
13
11
connection sample;
14
12
select database();
15
 
--error 1044
16
13
create database d2;
17
 
--error 1044
 
14
--error 1007
18
15
create database D1;
 
16
drop database d2;
19
17
disconnect sample;
20
18
 
21
19
connection master;
22
 
drop user 'sample'@'localhost';
23
 
drop database if exists d1;
 
20
drop database d1;
24
21
disconnect master;
25
22
connection default;
26
23