mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Added bug fix from 3.23 for AIX 4.3.3 and gcc 3.x Small change in EXCHANGE output Propagate open-files-limit from mysqld_safe -> mysqld Fixed speed bug in GROUP BY Added quotes around database name in CREATE DATABASE db_name (for binary log)
		
			
				
	
	
		
			15 lines
		
	
	
		
			443 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			443 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1;
 | 
						|
CREATE TABLE t1 (id CHAR(12) not null, PRIMARY KEY (id));
 | 
						|
insert into t1 values ('000000000001'),('000000000002');
 | 
						|
explain select * from t1 where id=000000000001;
 | 
						|
table	type	possible_keys	key	key_len	ref	rows	Extra
 | 
						|
t1	index	PRIMARY	PRIMARY	12	NULL	2	Using where; Using index
 | 
						|
select * from t1 where id=000000000001;
 | 
						|
id
 | 
						|
000000000001
 | 
						|
delete from t1 where id=000000000002;
 | 
						|
select * from t1;
 | 
						|
id
 | 
						|
000000000001
 | 
						|
drop table t1;
 |