mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +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
102 lines
3.8 KiB
Text
102 lines
3.8 KiB
Text
--source include/have_sjis.inc
|
||
--source include/have_innodb.inc
|
||
--character_set sjis
|
||
--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 REPLACE() function with Japanese characters in sjis encoding
|
||
#
|
||
|
||
SET NAMES sjis;
|
||
SET character_set_database = sjis;
|
||
|
||
CREATE TABLE `T1` (`C1` char(5)) DEFAULT CHARSET = sjis engine = innodb;
|
||
CREATE TABLE `T2` (`C1` char(5)) DEFAULT CHARSET = sjis engine = innodb;
|
||
CREATE TABLE `T3` (`C1` char(5)) DEFAULT CHARSET = sjis engine = innodb;
|
||
CREATE TABLE `T4` (`C1` char(5)) DEFAULT CHARSET = sjis engine = myisam;
|
||
CREATE TABLE `T5` (`C1` char(5)) DEFAULT CHARSET = sjis engine = myisam;
|
||
CREATE TABLE `T6` (`C1` char(5)) DEFAULT CHARSET = sjis engine = myisam;
|
||
CREATE TABLE `T7` (`C1` char(5)) DEFAULT CHARSET = sjis engine = MEMORY;
|
||
CREATE TABLE `T8` (`C1` char(5)) DEFAULT CHARSET = sjis engine = MEMORY;
|
||
CREATE TABLE `T9` (`C1` char(5)) 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 ('ソ十表予構');
|
||
|
||
#InnoDB
|
||
SELECT REPLACE(`C1`,'ア','アア') FROM `T1`;
|
||
SELECT REPLACE(`C1`,'イ','イイ') FROM `T1`;
|
||
SELECT REPLACE(`C1`,'ウ','ウウ') FROM `T1`;
|
||
SELECT REPLACE(`C1`,'エ','エエ') FROM `T1`;
|
||
SELECT REPLACE(`C1`,'オ','オオ') FROM `T1`;
|
||
SELECT REPLACE(`C1`,'あ','ああ') FROM `T2`;
|
||
SELECT REPLACE(`C1`,'い','いい') FROM `T2`;
|
||
SELECT REPLACE(`C1`,'う','うう') FROM `T2`;
|
||
SELECT REPLACE(`C1`,'え','ええ') FROM `T2`;
|
||
SELECT REPLACE(`C1`,'お','おお') FROM `T2`;
|
||
SELECT REPLACE(`C1`,'ソ','ソソ') FROM `T3`;
|
||
SELECT REPLACE(`C1`,'十','十十') FROM `T3`;
|
||
SELECT REPLACE(`C1`,'表','表表') FROM `T3`;
|
||
SELECT REPLACE(`C1`,'予','予予') FROM `T3`;
|
||
SELECT REPLACE(`C1`,'構','構構') FROM `T3`;
|
||
|
||
#MyISAM
|
||
SELECT REPLACE(`C1`,'ア','アア') FROM `T4`;
|
||
SELECT REPLACE(`C1`,'イ','イイ') FROM `T4`;
|
||
SELECT REPLACE(`C1`,'ウ','ウウ') FROM `T4`;
|
||
SELECT REPLACE(`C1`,'エ','エエ') FROM `T4`;
|
||
SELECT REPLACE(`C1`,'オ','オオ') FROM `T4`;
|
||
SELECT REPLACE(`C1`,'あ','ああ') FROM `T5`;
|
||
SELECT REPLACE(`C1`,'い','いい') FROM `T5`;
|
||
SELECT REPLACE(`C1`,'う','うう') FROM `T5`;
|
||
SELECT REPLACE(`C1`,'え','ええ') FROM `T5`;
|
||
SELECT REPLACE(`C1`,'お','おお') FROM `T5`;
|
||
SELECT REPLACE(`C1`,'ソ','ソソ') FROM `T6`;
|
||
SELECT REPLACE(`C1`,'十','十十') FROM `T6`;
|
||
SELECT REPLACE(`C1`,'表','表表') FROM `T6`;
|
||
SELECT REPLACE(`C1`,'予','予予') FROM `T6`;
|
||
SELECT REPLACE(`C1`,'構','構構') FROM `T6`;
|
||
|
||
#MEMORY
|
||
SELECT REPLACE(`C1`,'ア','アア') FROM `T7`;
|
||
SELECT REPLACE(`C1`,'イ','イイ') FROM `T7`;
|
||
SELECT REPLACE(`C1`,'ウ','ウウ') FROM `T7`;
|
||
SELECT REPLACE(`C1`,'エ','エエ') FROM `T7`;
|
||
SELECT REPLACE(`C1`,'オ','オオ') FROM `T7`;
|
||
SELECT REPLACE(`C1`,'あ','ああ') FROM `T8`;
|
||
SELECT REPLACE(`C1`,'い','いい') FROM `T8`;
|
||
SELECT REPLACE(`C1`,'う','うう') FROM `T8`;
|
||
SELECT REPLACE(`C1`,'え','ええ') FROM `T8`;
|
||
SELECT REPLACE(`C1`,'お','おお') FROM `T8`;
|
||
SELECT REPLACE(`C1`,'ソ','ソソ') FROM `T9`;
|
||
SELECT REPLACE(`C1`,'十','十十') FROM `T9`;
|
||
SELECT REPLACE(`C1`,'表','表表') FROM `T9`;
|
||
SELECT REPLACE(`C1`,'予','予予') FROM `T9`;
|
||
SELECT REPLACE(`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`;
|