mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	mysql-test/r/partition_bug18198.result: Disabled a lot of test cases using ascii-function mysql-test/r/partition_charset.result: Disabled a lot of test cases using ascii-function mysql-test/r/partition_error.result: Disabled a lot of test cases using ascii-function mysql-test/r/partition_pruning.result: Disabled a lot of test cases using ascii-function mysql-test/r/partition_range.result: Disabled a lot of test cases using ascii-function mysql-test/t/partition_bug18198.test: Disabled a lot of test cases using ascii-function mysql-test/t/partition_charset.test: Disabled a lot of test cases using ascii-function mysql-test/t/partition_error.test: Disabled a lot of test cases using ascii-function mysql-test/t/partition_pruning.test: Disabled a lot of test cases using ascii-function mysql-test/t/partition_range.test: Disabled a lot of test cases using ascii-function
		
			
				
	
	
		
			23 lines
		
	
	
		
			434 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			434 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| drop table if exists t1;
 | |
| set names utf8;
 | |
| create table t1 (s1 int)
 | |
| partition by list (s1)
 | |
| (partition c values in (1),
 | |
| partition Ç values in (3));
 | |
| insert into t1 values (1),(3);
 | |
| select * from t1;
 | |
| s1
 | |
| 1
 | |
| 3
 | |
| flush tables;
 | |
| set names latin1;
 | |
| select * from t1;
 | |
| s1
 | |
| 1
 | |
| 3
 | |
| drop table t1;
 | |
| create table t1 (a varchar(1), primary key (a))
 | |
| partition by list (ascii(a))
 | |
| (partition p1 values in (65));
 | |
| ERROR HY000: This partition function is not allowed
 |