summaryrefslogtreecommitdiff
path: root/mysql-test/suite/jp/t/jp_instr_ujis.test
blob: 696e1147372033a64c90bb75dc7513f9b01a6329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
--source include/have_ujis.inc

--disable_warnings
drop table if exists `T1`;
drop table if exists `T2`;
drop table if exists `T3`;
drop table if exists `T4`;
drop table if exists `T5`;
drop table if exists `T6`;
drop table if exists `T7`;
drop table if exists `T8`;
drop table if exists `T9`;
drop table if exists `T10`;
--enable_warnings

#
# Test INSTR() function with Japanese characters in ujis encoding
#

SET NAMES ujis;
SET character_set_database = ujis;

CREATE TABLE `T1` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = innodb;
CREATE TABLE `T2` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = innodb;
CREATE TABLE `T3` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = innodb;
CREATE TABLE `T4` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = myisam;
CREATE TABLE `T5` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = myisam;
CREATE TABLE `T6` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = myisam;
CREATE TABLE `T7` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = heap;
CREATE TABLE `T8` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = heap;
CREATE TABLE `T9` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = heap;
CREATE TABLE `T10` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = bdb;
CREATE TABLE `T11` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = bdb;
CREATE TABLE `T12` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = bdb;

INSERT INTO `T1` VALUES ('アイウエオ');
INSERT INTO `T2` VALUES ('あいうえお');
INSERT INTO `T3` VALUES ('龔龖龗龞龡');
INSERT INTO `T4` VALUES ('アイウエオ');
INSERT INTO `T5` VALUES ('あいうえお');
INSERT INTO `T6` VALUES ('龔龖龗龞龡');
INSERT INTO `T7` VALUES ('アイウエオ');
INSERT INTO `T8` VALUES ('あいうえお');
INSERT INTO `T9` VALUES ('龔龖龗龞龡');
INSERT INTO `T10` VALUES ('アイウエオ');
INSERT INTO `T11` VALUES ('あいうえお');
INSERT INTO `T12` VALUES ('龔龖龗龞龡');

#InnoDB
SELECT INSTR(`C1`,'ア') from `T1`;
SELECT INSTR(`C1`,'イ') from `T1`;
SELECT INSTR(`C1`,'ウ') from `T1`;
SELECT INSTR(`C1`,'エ') from `T1`;
SELECT INSTR(`C1`,'オ') from `T1`;
SELECT INSTR(`C1`,'ン') from `T1`;
SELECT INSTR(`C1`,'あ') from `T2`;
SELECT INSTR(`C1`,'い') from `T2`;
SELECT INSTR(`C1`,'う') from `T2`;
SELECT INSTR(`C1`,'え') from `T2`;
SELECT INSTR(`C1`,'お') from `T2`;
SELECT INSTR(`C1`,'ん') from `T2`;
SELECT INSTR(`C1`,'龔') from `T3`;
SELECT INSTR(`C1`,'龖') from `T3`;
SELECT INSTR(`C1`,'龗') from `T3`;
SELECT INSTR(`C1`,'龞') from `T3`;
SELECT INSTR(`C1`,'龡') from `T3`;
SELECT INSTR(`C1`,'丂') from `T3`;

#MyISAM
SELECT INSTR(`C1`,'ア') from `T4`;
SELECT INSTR(`C1`,'イ') from `T4`;
SELECT INSTR(`C1`,'ウ') from `T4`;
SELECT INSTR(`C1`,'エ') from `T4`;
SELECT INSTR(`C1`,'オ') from `T4`;
SELECT INSTR(`C1`,'ン') from `T4`;
SELECT INSTR(`C1`,'あ') from `T5`;
SELECT INSTR(`C1`,'い') from `T5`;
SELECT INSTR(`C1`,'う') from `T5`;
SELECT INSTR(`C1`,'え') from `T5`;
SELECT INSTR(`C1`,'お') from `T5`;
SELECT INSTR(`C1`,'ん') from `T5`;
SELECT INSTR(`C1`,'龔') from `T6`;
SELECT INSTR(`C1`,'龖') from `T6`;
SELECT INSTR(`C1`,'龗') from `T6`;
SELECT INSTR(`C1`,'龞') from `T6`;
SELECT INSTR(`C1`,'龡') from `T6`;
SELECT INSTR(`C1`,'丂') from `T6`;

#HEAP
SELECT INSTR(`C1`,'ア') from `T7`;
SELECT INSTR(`C1`,'イ') from `T7`;
SELECT INSTR(`C1`,'ウ') from `T7`;
SELECT INSTR(`C1`,'エ') from `T7`;
SELECT INSTR(`C1`,'オ') from `T7`;
SELECT INSTR(`C1`,'ン') from `T7`;
SELECT INSTR(`C1`,'あ') from `T8`;
SELECT INSTR(`C1`,'い') from `T8`;
SELECT INSTR(`C1`,'う') from `T8`;
SELECT INSTR(`C1`,'え') from `T8`;
SELECT INSTR(`C1`,'お') from `T8`;
SELECT INSTR(`C1`,'ん') from `T8`;
SELECT INSTR(`C1`,'龔') from `T9`;
SELECT INSTR(`C1`,'龖') from `T9`;
SELECT INSTR(`C1`,'龗') from `T9`;
SELECT INSTR(`C1`,'龞') from `T9`;
SELECT INSTR(`C1`,'龡') from `T9`;
SELECT INSTR(`C1`,'丂') from `T9`;

#BDB
SELECT INSTR(`C1`,'ア') from `T10`;
SELECT INSTR(`C1`,'イ') from `T10`;
SELECT INSTR(`C1`,'ウ') from `T10`;
SELECT INSTR(`C1`,'エ') from `T10`;
SELECT INSTR(`C1`,'オ') from `T10`;
SELECT INSTR(`C1`,'ン') from `T10`;
SELECT INSTR(`C1`,'あ') from `T11`;
SELECT INSTR(`C1`,'い') from `T11`;
SELECT INSTR(`C1`,'う') from `T11`;
SELECT INSTR(`C1`,'え') from `T11`;
SELECT INSTR(`C1`,'お') from `T11`;
SELECT INSTR(`C1`,'ん') from `T11`;
SELECT INSTR(`C1`,'龔') from `T12`;
SELECT INSTR(`C1`,'龖') from `T12`;
SELECT INSTR(`C1`,'龗') from `T12`;
SELECT INSTR(`C1`,'龞') from `T12`;
SELECT INSTR(`C1`,'龡') from `T12`;
SELECT INSTR(`C1`,'丂') from `T12`;

DROP TABLE `T1`;
DROP TABLE `T2`;
DROP TABLE `T3`;
DROP TABLE `T4`;
DROP TABLE `T5`;
DROP TABLE `T6`;
DROP TABLE `T7`;
DROP TABLE `T8`;
DROP TABLE `T9`;
DROP TABLE `T10`;
DROP TABLE `T11`;
DROP TABLE `T12`;