mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-28 17:15:19 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			520 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			520 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| --source include/have_gbk.inc
 | |
| #
 | |
| # test of new fulltext search features
 | |
| #
 | |
| 
 | |
| --disable_warnings
 | |
| DROP TABLE IF EXISTS t1;
 | |
| --enable_warnings
 | |
| 
 | |
| 
 | |
| #
 | |
| # BUG#29299 - repeatable myisam fulltext index corruption
 | |
| #
 | |
| CREATE TABLE t1(a VARCHAR(255) CHARACTER SET gbk, FULLTEXT(a));
 | |
| SET NAMES utf8;
 | |
| INSERT INTO t1 VALUES(0xF043616161),(0xBEF361616197C22061616161);
 | |
| SELECT HEX(a) FROM t1 WHERE MATCH(a) AGAINST(0x97C22061616161 IN BOOLEAN MODE);
 | |
| DELETE FROM t1 LIMIT 1;
 | |
| CHECK TABLE t1;
 | |
| SET NAMES latin1;
 | |
| DROP TABLE t1;
 | |
| 
 | |
| # End of 5.0 tests
 | |
| 
 | 
