~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/t/type_nchar.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
# Test nchar/nvarchar
 
3
#
 
4
--disable_warnings
 
5
drop table if exists t1;
 
6
--enable_warnings
 
7
 
 
8
create table t1 (c nchar(10));
 
9
show create table t1;
 
10
drop table t1;
 
11
 
 
12
create table t1 (c national char(10));
 
13
show create table t1;
 
14
drop table t1;
 
15
 
 
16
create table t1 (c national varchar(10));
 
17
show create table t1;
 
18
drop table t1;
 
19
 
 
20
create table t1 (c nvarchar(10));
 
21
show create table t1;
 
22
drop table t1;
 
23
 
 
24
create table t1 (c nchar varchar(10));
 
25
show create table t1;
 
26
drop table t1;
 
27
 
 
28
create table t1 (c national character varying(10));
 
29
show create table t1;
 
30
drop table t1;
 
31
 
 
32
create table t1 (c nchar varying(10));
 
33
show create table t1;
 
34
drop table t1;
 
35
 
 
36
# End of 4.1 tests