~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/jp/r/jp_length_sjis.result

  • Committer: Brian Aker
  • Date: 2010-01-29 23:22:38 UTC
  • mfrom: (1271.4.1 drizzle)
  • Revision ID: brian@gaz-20100129232238-gb6hplbbbdgf9xaz
Merged Lee, enabled jp tests by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
drop table if exists `�s�P`;
2
 
drop table if exists `�s�Q`;
3
 
drop table if exists `�s�R`;
4
 
drop table if exists `�s�S`;
5
 
drop table if exists `�s�T`;
6
 
drop table if exists `�s�U`;
7
 
drop table if exists `�s�V`;
8
 
drop table if exists `�s�W`;
9
 
drop table if exists `�s�X`;
10
 
drop table if exists `�s�P�O`;
11
 
drop table if exists `�s�P�P`;
12
 
drop table if exists `�s�P�Q`;
13
 
SET NAMES sjis;
14
 
SET character_set_database = sjis;
15
 
CREATE TABLE `�s�P` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = innodb;
16
 
CREATE TABLE `�s�Q` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = innodb;
17
 
CREATE TABLE `�s�R` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = innodb;
18
 
CREATE TABLE `�s�S` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = myisam;
19
 
CREATE TABLE `�s�T` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = myisam;
20
 
CREATE TABLE `�s�U` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = myisam;
21
 
CREATE TABLE `�s�V` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = MEMORY;
22
 
CREATE TABLE `�s�W` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = MEMORY;
23
 
CREATE TABLE `�s�X` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = MEMORY;
24
 
CREATE TABLE `�s�P�O` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = bdb;
25
 
CREATE TABLE `�s�P�P` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = bdb;
26
 
CREATE TABLE `�s�P�Q` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = bdb;
27
 
INSERT INTO `�s�P` VALUES ('�����'),('����'),('���'),('��'),('�'),('');
28
 
INSERT INTO `�s�Q` VALUES ('����������'),('��������'),('������'),('����'),('��'),('');
29
 
INSERT INTO `�s�R` VALUES ('�\�\�\�\�\'),('�\�\�\�\'),('�\�\�\'),('�\�\'),('�\'),('');
30
 
INSERT INTO `�s�S` VALUES ('�����'),('����'),('���'),('��'),('�'),('');
31
 
INSERT INTO `�s�T` VALUES ('����������'),('��������'),('������'),('����'),('��'),('');
32
 
INSERT INTO `�s�U` VALUES ('�\�\�\�\�\'),('�\�\�\�\'),('�\�\�\'),('�\�\'),('�\'),('');
33
 
INSERT INTO `�s�V` VALUES ('�����'),('����'),('���'),('��'),('�'),('');
34
 
INSERT INTO `�s�W` VALUES ('����������'),('��������'),('������'),('����'),('��'),('');
35
 
INSERT INTO `�s�X` VALUES ('�\�\�\�\�\'),('�\�\�\�\'),('�\�\�\'),('�\�\'),('�\'),('');
36
 
INSERT INTO `�s�P�O` VALUES ('�����'),('����'),('���'),('��'),('�'),('');
37
 
INSERT INTO `�s�P�P` VALUES ('����������'),('��������'),('������'),('����'),('��'),('');
38
 
INSERT INTO `�s�P�Q` VALUES ('�\�\�\�\�\'),('�\�\�\�\'),('�\�\�\'),('�\�\'),('�\'),('');
39
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�P`;
40
 
�b�P    LENGTH(`�b�P`)
41
 
        0
42
 
�       1
43
 
��      2
44
 
���     3
45
 
����    4
46
 
�����   5
47
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�Q`;
48
 
�b�P    LENGTH(`�b�P`)
49
 
        0
50
 
��      2
51
 
����    4
52
 
������  6
53
 
��������        8
54
 
����������      10
55
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�R`;
56
 
�b�P    LENGTH(`�b�P`)
57
 
        0
58
 
�\      2
59
 
�\�\    4
60
 
�\�\�\  6
61
 
�\�\�\�\        8
62
 
�\�\�\�\�\      10
63
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�S`;
64
 
�b�P    LENGTH(`�b�P`)
65
 
        0
66
 
�       1
67
 
��      2
68
 
���     3
69
 
����    4
70
 
�����   5
71
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�T`;
72
 
�b�P    LENGTH(`�b�P`)
73
 
        0
74
 
��      2
75
 
����    4
76
 
������  6
77
 
��������        8
78
 
����������      10
79
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�U`;
80
 
�b�P    LENGTH(`�b�P`)
81
 
        0
82
 
�\      2
83
 
�\�\    4
84
 
�\�\�\  6
85
 
�\�\�\�\        8
86
 
�\�\�\�\�\      10
87
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�V`;
88
 
�b�P    LENGTH(`�b�P`)
89
 
�����   5
90
 
����    4
91
 
���     3
92
 
��      2
93
 
�       1
94
 
        0
95
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�W`;
96
 
�b�P    LENGTH(`�b�P`)
97
 
����������      10
98
 
��������        8
99
 
������  6
100
 
����    4
101
 
��      2
102
 
        0
103
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�X`;
104
 
�b�P    LENGTH(`�b�P`)
105
 
�\�\�\�\�\      10
106
 
�\�\�\�\        8
107
 
�\�\�\  6
108
 
�\�\    4
109
 
�\      2
110
 
        0
111
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�P�O`;
112
 
�b�P    LENGTH(`�b�P`)
113
 
�����   5
114
 
����    4
115
 
���     3
116
 
��      2
117
 
�       1
118
 
        0
119
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�P�P`;
120
 
�b�P    LENGTH(`�b�P`)
121
 
����������      10
122
 
��������        8
123
 
������  6
124
 
����    4
125
 
��      2
126
 
        0
127
 
SELECT `�b�P`, LENGTH(`�b�P`) FROM `�s�P�Q`;
128
 
�b�P    LENGTH(`�b�P`)
129
 
�\�\�\�\�\      10
130
 
�\�\�\�\        8
131
 
�\�\�\  6
132
 
�\�\    4
133
 
�\      2
134
 
        0
135
 
DROP TABLE `�s�P`;
136
 
DROP TABLE `�s�Q`;
137
 
DROP TABLE `�s�R`;
138
 
DROP TABLE `�s�S`;
139
 
DROP TABLE `�s�T`;
140
 
DROP TABLE `�s�U`;
141
 
DROP TABLE `�s�V`;
142
 
DROP TABLE `�s�W`;
143
 
DROP TABLE `�s�X`;
144
 
DROP TABLE `�s�P�O`;
145
 
DROP TABLE `�s�P�P`;
146
 
DROP TABLE `�s�P�Q`;