~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lowercase_fs_off.test

  • Committer: Monty Taylor
  • Date: 2008-09-15 00:46:33 UTC
  • mfrom: (383.1.55 client-split)
  • Revision ID: monty@inaugust.com-20080915004633-fmjw27fi41cxs35w
Merged from client-split.

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
 
 
6
 
connect (master,localhost,root,,);
7
 
connection master;
8
 
create database d1;
9
 
 
10
 
connect (sample,localhost,sample,password,d1);
11
 
connection sample;
12
 
select database();
13
 
create database d2;
14
 
--error ER_DB_CREATE_EXISTS
15
 
create database D1;
16
 
drop database d2;
17
 
disconnect sample;
18
 
 
19
 
connection master;
20
 
drop database d1;
21
 
disconnect master;
22
 
connection default;
23
 
 
24
 
# End of 4.1 tests