mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# test sort,min and max on binary fields
 | 
						|
#
 | 
						|
--disable_warnings
 | 
						|
drop table if exists t1,t2;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
create table t1 (name char(20) not null, primary key (name));
 | 
						|
create table t2 (name char(20) binary not null, primary key (name));
 | 
						|
insert into t1 values ("å");
 | 
						|
insert into t1 values ("ä");
 | 
						|
insert into t1 values ("ö");
 | 
						|
insert into t2 select * from t1;
 | 
						|
 | 
						|
select * from t1 order by name;
 | 
						|
select concat("*",name,"*") from t1 order by 1;
 | 
						|
select min(name),min(concat("*",name,"*")),max(name),max(concat("*",name,"*")) from t1;
 | 
						|
select * from t2 order by name;
 | 
						|
select concat("*",name,"*") from t2 order by 1;
 | 
						|
select min(name),min(concat("*",name,"*")),max(name),max(concat("*",name,"*")) from t2;
 | 
						|
select name from t1 where name between 'Ä' and 'Ö';
 | 
						|
select name from t2 where name between 'ä' and 'ö';
 | 
						|
select name from t2 where name between 'Ä' and 'Ö';
 | 
						|
 | 
						|
drop table t1,t2;
 | 
						|
 | 
						|
#
 | 
						|
# Test of binary and normal strings
 | 
						|
#
 | 
						|
 | 
						|
create table t1 (a char(10) not null, b char(10) binary not null,key (a), key(b));
 | 
						|
insert into t1 values ("hello ","hello "),("hello2 ","hello2 ");
 | 
						|
select concat("-",a,"-",b,"-") from t1 where a="hello";
 | 
						|
select concat("-",a,"-",b,"-") from t1 where a="hello ";
 | 
						|
select concat("-",a,"-",b,"-") from t1 ignore index (a) where a="hello ";
 | 
						|
select concat("-",a,"-",b,"-") from t1 where b="hello";
 | 
						|
select concat("-",a,"-",b,"-") from t1 where b="hello ";
 | 
						|
select concat("-",a,"-",b,"-") from t1 ignore index (b) where b="hello ";
 | 
						|
# blob test
 | 
						|
alter table t1 modify b tinytext not null, drop key b, add key (b(100));
 | 
						|
select concat("-",a,"-",b,"-") from t1 where b="hello ";
 | 
						|
select concat("-",a,"-",b,"-") from t1 ignore index (b) where b="hello ";
 | 
						|
drop table t1;
 | 
						|
 | 
						|
#
 | 
						|
# Test of binary and NULL
 | 
						|
#
 | 
						|
create table t1 (b char(8));
 | 
						|
insert into t1 values(NULL);
 | 
						|
select b from t1 where binary b like '';
 | 
						|
select b from t1 group by binary b like '';
 | 
						|
select b from t1 having binary b like '';
 | 
						|
drop table t1;
 |