mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / jp / r / jp_replace_sjis.result
blobb8daf59540c6c9b78abdb7ee12d247f5754e766b
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 SET NAMES sjis;
11 SET character_set_database = sjis;
12 CREATE TABLE `‚s‚P` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = innodb;
13 CREATE TABLE `‚s‚Q` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = innodb;
14 CREATE TABLE `‚s‚R` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = innodb;
15 CREATE TABLE `‚s‚S` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = myisam;
16 CREATE TABLE `‚s‚T` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = myisam;
17 CREATE TABLE `‚s‚U` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = myisam;
18 CREATE TABLE `‚s‚V` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = MEMORY;
19 CREATE TABLE `‚s‚W` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = MEMORY;
20 CREATE TABLE `‚s‚X` (`‚b‚P` char(5)) DEFAULT CHARSET = sjis engine = MEMORY;
21 INSERT INTO `‚s‚P` VALUES ('±²³´µ');
22 INSERT INTO `‚s‚Q` VALUES ('‚ ‚¢‚¤‚¦‚¨');
23 INSERT INTO `‚s‚R` VALUES ('ƒ\�\•\—\�\');
24 INSERT INTO `‚s‚S` VALUES ('±²³´µ');
25 INSERT INTO `‚s‚T` VALUES ('‚ ‚¢‚¤‚¦‚¨');
26 INSERT INTO `‚s‚U` VALUES ('ƒ\�\•\—\�\');
27 INSERT INTO `‚s‚V` VALUES ('±²³´µ');
28 INSERT INTO `‚s‚W` VALUES ('‚ ‚¢‚¤‚¦‚¨');
29 INSERT INTO `‚s‚X` VALUES ('ƒ\�\•\—\�\');
30 SELECT REPLACE(`‚b‚P`,'±','±±') FROM `‚s‚P`;
31 REPLACE(`‚b‚P`,'±','±±')
32 ±±²³´µ
33 SELECT REPLACE(`‚b‚P`,'²','²²') FROM `‚s‚P`;
34 REPLACE(`‚b‚P`,'²','²²')
35 ±²²³´µ
36 SELECT REPLACE(`‚b‚P`,'³','³³') FROM `‚s‚P`;
37 REPLACE(`‚b‚P`,'³','³³')
38 ±²³³´µ
39 SELECT REPLACE(`‚b‚P`,'´','´´') FROM `‚s‚P`;
40 REPLACE(`‚b‚P`,'´','´´')
41 ±²³´´µ
42 SELECT REPLACE(`‚b‚P`,'µ','µµ') FROM `‚s‚P`;
43 REPLACE(`‚b‚P`,'µ','µµ')
44 ±²³´µµ
45 SELECT REPLACE(`‚b‚P`,'‚ ','‚ ‚ ') FROM `‚s‚Q`;
46 REPLACE(`‚b‚P`,'‚ ','‚ ‚ ')
47 ‚ ‚ ‚¢‚¤‚¦‚¨
48 SELECT REPLACE(`‚b‚P`,'‚¢','‚¢‚¢') FROM `‚s‚Q`;
49 REPLACE(`‚b‚P`,'‚¢','‚¢‚¢')
50 ‚ ‚¢‚¢‚¤‚¦‚¨
51 SELECT REPLACE(`‚b‚P`,'‚¤','‚¤‚¤') FROM `‚s‚Q`;
52 REPLACE(`‚b‚P`,'‚¤','‚¤‚¤')
53 ‚ ‚¢‚¤‚¤‚¦‚¨
54 SELECT REPLACE(`‚b‚P`,'‚¦','‚¦‚¦') FROM `‚s‚Q`;
55 REPLACE(`‚b‚P`,'‚¦','‚¦‚¦')
56 ‚ ‚¢‚¤‚¦‚¦‚¨
57 SELECT REPLACE(`‚b‚P`,'‚¨','‚¨‚¨') FROM `‚s‚Q`;
58 REPLACE(`‚b‚P`,'‚¨','‚¨‚¨')
59 ‚ ‚¢‚¤‚¦‚¨‚¨
60 SELECT REPLACE(`‚b‚P`,'ƒ\','ƒ\ƒ\') FROM `‚s‚R`;
61 REPLACE(`‚b‚P`,'ƒ\','ƒ\ƒ\')
62 ƒ\ƒ\�\•\—\�\
63 SELECT REPLACE(`‚b‚P`,'�\','�\�\') FROM `‚s‚R`;
64 REPLACE(`‚b‚P`,'�\','�\�\')
65 ƒ\�\�\•\—\�\
66 SELECT REPLACE(`‚b‚P`,'•\','•\•\') FROM `‚s‚R`;
67 REPLACE(`‚b‚P`,'•\','•\•\')
68 ƒ\�\•\•\—\�\
69 SELECT REPLACE(`‚b‚P`,'—\','—\—\') FROM `‚s‚R`;
70 REPLACE(`‚b‚P`,'—\','—\—\')
71 ƒ\�\•\—\—\�\
72 SELECT REPLACE(`‚b‚P`,'�\','�\�\') FROM `‚s‚R`;
73 REPLACE(`‚b‚P`,'�\','�\�\')
74 ƒ\�\•\—\�\�\
75 SELECT REPLACE(`‚b‚P`,'±','±±') FROM `‚s‚S`;
76 REPLACE(`‚b‚P`,'±','±±')
77 ±±²³´µ
78 SELECT REPLACE(`‚b‚P`,'²','²²') FROM `‚s‚S`;
79 REPLACE(`‚b‚P`,'²','²²')
80 ±²²³´µ
81 SELECT REPLACE(`‚b‚P`,'³','³³') FROM `‚s‚S`;
82 REPLACE(`‚b‚P`,'³','³³')
83 ±²³³´µ
84 SELECT REPLACE(`‚b‚P`,'´','´´') FROM `‚s‚S`;
85 REPLACE(`‚b‚P`,'´','´´')
86 ±²³´´µ
87 SELECT REPLACE(`‚b‚P`,'µ','µµ') FROM `‚s‚S`;
88 REPLACE(`‚b‚P`,'µ','µµ')
89 ±²³´µµ
90 SELECT REPLACE(`‚b‚P`,'‚ ','‚ ‚ ') FROM `‚s‚T`;
91 REPLACE(`‚b‚P`,'‚ ','‚ ‚ ')
92 ‚ ‚ ‚¢‚¤‚¦‚¨
93 SELECT REPLACE(`‚b‚P`,'‚¢','‚¢‚¢') FROM `‚s‚T`;
94 REPLACE(`‚b‚P`,'‚¢','‚¢‚¢')
95 ‚ ‚¢‚¢‚¤‚¦‚¨
96 SELECT REPLACE(`‚b‚P`,'‚¤','‚¤‚¤') FROM `‚s‚T`;
97 REPLACE(`‚b‚P`,'‚¤','‚¤‚¤')
98 ‚ ‚¢‚¤‚¤‚¦‚¨
99 SELECT REPLACE(`‚b‚P`,'‚¦','‚¦‚¦') FROM `‚s‚T`;
100 REPLACE(`‚b‚P`,'‚¦','‚¦‚¦')
101 ‚ ‚¢‚¤‚¦‚¦‚¨
102 SELECT REPLACE(`‚b‚P`,'‚¨','‚¨‚¨') FROM `‚s‚T`;
103 REPLACE(`‚b‚P`,'‚¨','‚¨‚¨')
104 ‚ ‚¢‚¤‚¦‚¨‚¨
105 SELECT REPLACE(`‚b‚P`,'ƒ\','ƒ\ƒ\') FROM `‚s‚U`;
106 REPLACE(`‚b‚P`,'ƒ\','ƒ\ƒ\')
107 ƒ\ƒ\�\•\—\�\
108 SELECT REPLACE(`‚b‚P`,'�\','�\�\') FROM `‚s‚U`;
109 REPLACE(`‚b‚P`,'�\','�\�\')
110 ƒ\�\�\•\—\�\
111 SELECT REPLACE(`‚b‚P`,'•\','•\•\') FROM `‚s‚U`;
112 REPLACE(`‚b‚P`,'•\','•\•\')
113 ƒ\�\•\•\—\�\
114 SELECT REPLACE(`‚b‚P`,'—\','—\—\') FROM `‚s‚U`;
115 REPLACE(`‚b‚P`,'—\','—\—\')
116 ƒ\�\•\—\—\�\
117 SELECT REPLACE(`‚b‚P`,'�\','�\�\') FROM `‚s‚U`;
118 REPLACE(`‚b‚P`,'�\','�\�\')
119 ƒ\�\•\—\�\�\
120 SELECT REPLACE(`‚b‚P`,'±','±±') FROM `‚s‚V`;
121 REPLACE(`‚b‚P`,'±','±±')
122 ±±²³´µ
123 SELECT REPLACE(`‚b‚P`,'²','²²') FROM `‚s‚V`;
124 REPLACE(`‚b‚P`,'²','²²')
125 ±²²³´µ
126 SELECT REPLACE(`‚b‚P`,'³','³³') FROM `‚s‚V`;
127 REPLACE(`‚b‚P`,'³','³³')
128 ±²³³´µ
129 SELECT REPLACE(`‚b‚P`,'´','´´') FROM `‚s‚V`;
130 REPLACE(`‚b‚P`,'´','´´')
131 ±²³´´µ
132 SELECT REPLACE(`‚b‚P`,'µ','µµ') FROM `‚s‚V`;
133 REPLACE(`‚b‚P`,'µ','µµ')
134 ±²³´µµ
135 SELECT REPLACE(`‚b‚P`,'‚ ','‚ ‚ ') FROM `‚s‚W`;
136 REPLACE(`‚b‚P`,'‚ ','‚ ‚ ')
137 ‚ ‚ ‚¢‚¤‚¦‚¨
138 SELECT REPLACE(`‚b‚P`,'‚¢','‚¢‚¢') FROM `‚s‚W`;
139 REPLACE(`‚b‚P`,'‚¢','‚¢‚¢')
140 ‚ ‚¢‚¢‚¤‚¦‚¨
141 SELECT REPLACE(`‚b‚P`,'‚¤','‚¤‚¤') FROM `‚s‚W`;
142 REPLACE(`‚b‚P`,'‚¤','‚¤‚¤')
143 ‚ ‚¢‚¤‚¤‚¦‚¨
144 SELECT REPLACE(`‚b‚P`,'‚¦','‚¦‚¦') FROM `‚s‚W`;
145 REPLACE(`‚b‚P`,'‚¦','‚¦‚¦')
146 ‚ ‚¢‚¤‚¦‚¦‚¨
147 SELECT REPLACE(`‚b‚P`,'‚¨','‚¨‚¨') FROM `‚s‚W`;
148 REPLACE(`‚b‚P`,'‚¨','‚¨‚¨')
149 ‚ ‚¢‚¤‚¦‚¨‚¨
150 SELECT REPLACE(`‚b‚P`,'ƒ\','ƒ\ƒ\') FROM `‚s‚X`;
151 REPLACE(`‚b‚P`,'ƒ\','ƒ\ƒ\')
152 ƒ\ƒ\�\•\—\�\
153 SELECT REPLACE(`‚b‚P`,'�\','�\�\') FROM `‚s‚X`;
154 REPLACE(`‚b‚P`,'�\','�\�\')
155 ƒ\�\�\•\—\�\
156 SELECT REPLACE(`‚b‚P`,'•\','•\•\') FROM `‚s‚X`;
157 REPLACE(`‚b‚P`,'•\','•\•\')
158 ƒ\�\•\•\—\�\
159 SELECT REPLACE(`‚b‚P`,'—\','—\—\') FROM `‚s‚X`;
160 REPLACE(`‚b‚P`,'—\','—\—\')
161 ƒ\�\•\—\—\�\
162 SELECT REPLACE(`‚b‚P`,'�\','�\�\') FROM `‚s‚X`;
163 REPLACE(`‚b‚P`,'�\','�\�\')
164 ƒ\�\•\—\�\�\
165 DROP TABLE `‚s‚P`;
166 DROP TABLE `‚s‚Q`;
167 DROP TABLE `‚s‚R`;
168 DROP TABLE `‚s‚S`;
169 DROP TABLE `‚s‚T`;
170 DROP TABLE `‚s‚U`;
171 DROP TABLE `‚s‚V`;
172 DROP TABLE `‚s‚W`;
173 DROP TABLE `‚s‚X`;