mariadb/mysql-test/suite/jp/t/jp_instr_sjis.test
mleich@five.local.lan 464c2de70a Fix for
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
2008-05-15 18:01:13 +02:00

111 lines
3.9 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--source include/have_sjis.inc
--source include/have_innodb.inc
--character_set sjis
--disable_warnings
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
drop table if exists ``;
--enable_warnings
#
# Test INSTR() function with Japanese characters in sjis encoding
#
SET NAMES sjis;
SET character_set_database = sjis;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = innodb;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = innodb;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = innodb;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = myisam;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = myisam;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = myisam;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = MEMORY;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = MEMORY;
CREATE TABLE `` (`` char(5), INDEX(``)) DEFAULT CHARSET = sjis engine = MEMORY;
INSERT INTO `` VALUES ('アイウエオ');
INSERT INTO `` VALUES ('あいうえお');
INSERT INTO `` VALUES ('ソ十表予構');
INSERT INTO `` VALUES ('アイウエオ');
INSERT INTO `` VALUES ('あいうえお');
INSERT INTO `` VALUES ('ソ十表予構');
INSERT INTO `` VALUES ('アイウエオ');
INSERT INTO `` VALUES ('あいうえお');
INSERT INTO `` VALUES ('ソ十表予構');
#InnoDB
SELECT INSTR(``,'ア') from ``;
SELECT INSTR(``,'イ') from ``;
SELECT INSTR(``,'ウ') from ``;
SELECT INSTR(``,'エ') from ``;
SELECT INSTR(``,'オ') from ``;
SELECT INSTR(``,'ン') from ``;
SELECT INSTR(``,'あ') from ``;
SELECT INSTR(``,'い') from ``;
SELECT INSTR(``,'う') from ``;
SELECT INSTR(``,'え') from ``;
SELECT INSTR(``,'お') from ``;
SELECT INSTR(``,'ん') from ``;
SELECT INSTR(``,'ソ') from ``;
SELECT INSTR(``,'十') from ``;
SELECT INSTR(``,'表') from ``;
SELECT INSTR(``,'予') from ``;
SELECT INSTR(``,'構') from ``;
SELECT INSTR(``,'噂') from ``;
#MyISAM
SELECT INSTR(``,'ア') from ``;
SELECT INSTR(``,'イ') from ``;
SELECT INSTR(``,'ウ') from ``;
SELECT INSTR(``,'エ') from ``;
SELECT INSTR(``,'オ') from ``;
SELECT INSTR(``,'ン') from ``;
SELECT INSTR(``,'あ') from ``;
SELECT INSTR(``,'い') from ``;
SELECT INSTR(``,'う') from ``;
SELECT INSTR(``,'え') from ``;
SELECT INSTR(``,'お') from ``;
SELECT INSTR(``,'ん') from ``;
SELECT INSTR(``,'ソ') from ``;
SELECT INSTR(``,'十') from ``;
SELECT INSTR(``,'表') from ``;
SELECT INSTR(``,'予') from ``;
SELECT INSTR(``,'構') from ``;
SELECT INSTR(``,'噂') from ``;
#MEMORY
SELECT INSTR(``,'ア') from ``;
SELECT INSTR(``,'イ') from ``;
SELECT INSTR(``,'ウ') from ``;
SELECT INSTR(``,'エ') from ``;
SELECT INSTR(``,'オ') from ``;
SELECT INSTR(``,'ン') from ``;
SELECT INSTR(``,'あ') from ``;
SELECT INSTR(``,'い') from ``;
SELECT INSTR(``,'う') from ``;
SELECT INSTR(``,'え') from ``;
SELECT INSTR(``,'お') from ``;
SELECT INSTR(``,'ん') from ``;
SELECT INSTR(``,'ソ') from ``;
SELECT INSTR(``,'十') from ``;
SELECT INSTR(``,'表') from ``;
SELECT INSTR(``,'予') from ``;
SELECT INSTR(``,'構') from ``;
SELECT INSTR(``,'噂') from ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;
DROP TABLE ``;