~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/t/lowercase_fs_off.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

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 1007
 
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