2
# test for per-db default collation
3
# this should become the default for tables created in that db
5
# https://blueprints.launchpad.net/drizzle/+spec/default-collation-test
8
# assuming system default collation is utf8_general_ci
10
create database mysqltest collate = utf8_bin;
11
show create database mysqltest;
15
create table t1 (a varchar(10));
17
create table t2 (a varchar(10)) collate = utf8_general_ci;
19
insert into t1 values ('a'),('A'),('aA'),('Aa'),('ab'),('Ab');
21
insert into t2 values ('a'),('A'),('aA'),('Aa'),('ab'),('Ab');
23
select * from t1 order by a;
25
select * from t2 order by a;
31
select count(*) from t1 where a='a';
33
select count(*) from t2 where a='a';
35
select count(*) from t1 where a like 'a%';
37
select count(*) from t2 where a like 'a%';
39
drop table if exists t1;
41
drop table if exists t2;
43
drop database if exists mysqltest;