mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 464c2de70a
			
		
	
	
	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
		
	
			
		
			
				
	
	
		
			69 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| --source include/have_ujis.inc
 | |
| --source include/have_innodb.inc
 | |
| 
 | |
| --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 Displaying Japanese charact in ujis encoding 
 | |
| #
 | |
| 
 | |
| SET NAMES ujis;
 | |
| SET character_set_database = ujis;
 | |
| 
 | |
| CREATE TABLE `£Ô£±` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = innodb;
 | |
| CREATE TABLE `£Ô£²` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = innodb;
 | |
| CREATE TABLE `£Ô£³` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = innodb;
 | |
| CREATE TABLE `£Ô£´` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = myisam;
 | |
| CREATE TABLE `£Ô£µ` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = myisam;
 | |
| CREATE TABLE `£Ô£¶` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = myisam;
 | |
| CREATE TABLE `£Ô£·` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = MEMORY;
 | |
| CREATE TABLE `£Ô£¸` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = MEMORY;
 | |
| CREATE TABLE `£Ô£¹` (c1 char(20), INDEX(c1)) DEFAULT CHARSET = ujis engine = MEMORY;
 | |
| 
 | |
| #Load the following data in each table
 | |
| # jisx0201 hankaku-katakana data
 | |
| # jisx0208 data
 | |
| # jisx0212 supplemental character data
 | |
| 
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0201_ujis.dat' INTO TABLE `£Ô£±`;
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0208_ujis.dat' INTO TABLE `£Ô£²`;
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0212_ujis.dat' INTO TABLE `£Ô£³`; 
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0201_ujis.dat' INTO TABLE `£Ô£´`;
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0208_ujis.dat' INTO TABLE `£Ô£µ`;
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0212_ujis.dat' INTO TABLE `£Ô£¶`;
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0201_ujis.dat' INTO TABLE `£Ô£·`;
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0208_ujis.dat' INTO TABLE `£Ô£¸`;
 | |
| LOAD DATA LOCAL INFILE 'suite/jp/std_data/jisx0212_ujis.dat' INTO TABLE `£Ô£¹`;
 | |
| 
 | |
| #InnoDB
 | |
| SELECT * FROM `£Ô£±`;
 | |
| SELECT * FROM `£Ô£²`;
 | |
| SELECT * FROM `£Ô£³`;
 | |
| #MyISAM
 | |
| SELECT * FROM `£Ô£´`;
 | |
| SELECT * FROM `£Ô£µ`;
 | |
| SELECT * FROM `£Ô£¶`;
 | |
| #MEMORY
 | |
| SELECT * FROM `£Ô£·`;
 | |
| SELECT * FROM `£Ô£¸`;
 | |
| SELECT * FROM `£Ô£¹`;
 | |
| 
 | |
| drop table `£Ô£±`;
 | |
| drop table `£Ô£²`;
 | |
| drop table `£Ô£³`;
 | |
| drop table `£Ô£´`;
 | |
| drop table `£Ô£µ`;
 | |
| drop table `£Ô£¶`;
 | |
| drop table `£Ô£·`;
 | |
| drop table `£Ô£¸`;
 | |
| drop table `£Ô£¹`;
 |