~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/default_collation.test

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
Remove uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
2
 
# test for per-db default collation
3
 
# this should become the default for tables created in that db
4
 
#
5
 
# https://blueprints.launchpad.net/drizzle/+spec/default-collation-test
6
 
#
7
 
 
8
 
# assuming system default collation is utf8_general_ci
9
 
 
10
 
create database mysqltest collate = utf8_bin;
11
 
show create database mysqltest;
12
 
 
13
 
use mysqltest;
14
 
 
15
 
create table t1 (a varchar(10));
16
 
 
17
 
create table t2 (a varchar(10)) collate = utf8_general_ci;
18
 
 
19
 
insert into t1 values ('a'),('A'),('aA'),('Aa'),('ab'),('Ab');
20
 
 
21
 
insert into t2 values ('a'),('A'),('aA'),('Aa'),('ab'),('Ab');
22
 
 
23
 
select * from t1 order by a;
24
 
 
25
 
select * from t2 order by a;
26
 
 
27
 
show create table t1;
28
 
 
29
 
show create table t2;
30
 
 
31
 
select count(*) from t1 where a='a';
32
 
 
33
 
select count(*) from t2 where a='a';
34
 
 
35
 
select count(*) from t1 where a like 'a%';
36
 
 
37
 
select count(*) from t2 where a like 'a%';
38
 
 
39
 
drop table if exists t1;
40
 
 
41
 
drop table if exists t2;
42
 
 
43
 
drop database if exists mysqltest;
44
 
 
45