~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lowercase_fs_off.test

code clean move Item_func_ascii, Item_func_bit_count, Item_func_find_in_set, Item_func_ord  to functions directory

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