summaryrefslogtreecommitdiff
path: root/mysql-test/suite/jp/t/jp_instr_ujis.test
blob: b2dd233557ba0fb44bed18f5f7f28897ffcf0fc1 (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
--source include/have_ujis.inc
--source include/have_innodb.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`;
--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 = MEMORY;
CREATE TABLE `T8` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = MEMORY;
CREATE TABLE `T9` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ujis engine = MEMORY;

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 ('龔龖龗龞龡');

#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`;

#MEMORY
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`;

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`;