~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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
-- source include/not_embedded.inc
 
7
 
 
8
connect (master,localhost,root,,);
 
9
connection master;
 
10
create database d1;
 
11
grant all on d1.* to 'sample'@'localhost' identified by 'password';
 
12
flush privileges;
 
13
 
 
14
connect (sample,localhost,sample,password,d1);
 
15
connection sample;
 
16
select database();
 
17
--error 1044
 
18
create database d2;
 
19
--error 1044
 
20
create database D1;
 
21
disconnect sample;
 
22
 
 
23
connection master;
 
24
drop user 'sample'@'localhost';
 
25
drop database if exists d1;
 
26
disconnect master;
 
27
connection default;
 
28
 
 
29
# End of 4.1 tests