mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
464c2de70a
Bug#28563 Test suite "jp" fails completely - The main goal of this fix is to make the "jp" suite runnable in general and to make it more robust for use in pushbuild under build team conditions. - It was decided to fix the remaining heavy issues within the architecture of this test later (-> WL 4327 Redesign the 'jp' testsuite for build team testing conditions) Only the test jp_trim_sjis got some significant improvements of its architecture (Just as proof of concept for the other tests). - Tests suffering from Bug 36597 Testsuite "jp": Suspicious results for some tests (unexpected result sets) were disabled - *.opt files were used to avoid differences on OS (Windows) because of case sensitive tablenames within the tests
110 lines
3 KiB
Text
110 lines
3 KiB
Text
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`;
|
||
SET NAMES sjis;
|
||
SET character_set_database = sjis;
|
||
CREATE TABLE `T1` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = innodb;
|
||
CREATE TABLE `T2` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = innodb;
|
||
CREATE TABLE `T3` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = innodb;
|
||
CREATE TABLE `T4` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = myisam;
|
||
CREATE TABLE `T5` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = myisam;
|
||
CREATE TABLE `T6` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = myisam;
|
||
CREATE TABLE `T7` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = MEMORY;
|
||
CREATE TABLE `T8` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis engine = MEMORY;
|
||
CREATE TABLE `T9` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = sjis 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 ('ソ十表予構'),('ソ十表予'),('ソ十表'),('ソ十'),('ソ'),('');
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T1`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
0
|
||
ア 1
|
||
アイ 2
|
||
アイウ 3
|
||
アイウエ 4
|
||
アイウエオ 5
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T2`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
0
|
||
あ 1
|
||
あい 2
|
||
あいう 3
|
||
あいうえ 4
|
||
あいうえお 5
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T3`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
0
|
||
ソ 1
|
||
ソ十 2
|
||
ソ十表 3
|
||
ソ十表予 4
|
||
ソ十表予構 5
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T4`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
0
|
||
ア 1
|
||
アイ 2
|
||
アイウ 3
|
||
アイウエ 4
|
||
アイウエオ 5
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T5`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
0
|
||
あ 1
|
||
あい 2
|
||
あいう 3
|
||
あいうえ 4
|
||
あいうえお 5
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T6`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
0
|
||
ソ 1
|
||
ソ十 2
|
||
ソ十表 3
|
||
ソ十表予 4
|
||
ソ十表予構 5
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T7`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
アイウエオ 5
|
||
アイウエ 4
|
||
アイウ 3
|
||
アイ 2
|
||
ア 1
|
||
0
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T8`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
あいうえお 5
|
||
あいうえ 4
|
||
あいう 3
|
||
あい 2
|
||
あ 1
|
||
0
|
||
SELECT `C1`, CHAR_LENGTH(`C1`) FROM `T9`;
|
||
C1 CHAR_LENGTH(`C1`)
|
||
ソ十表予構 5
|
||
ソ十表予 4
|
||
ソ十表 3
|
||
ソ十 2
|
||
ソ 1
|
||
0
|
||
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`;
|