mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	 f43093ec0e
			
		
	
	f43093ec0e
	
	
	
		
			
			Added more DBUG statements Ensure that we are comparing end space with BINARY strings Use 'any_db' instead of '' to mean any database. (For HANDLER command) Only strip ' ' when comparing CHAR, not other space-like characters (like \t)
		
			
				
	
	
		
			23 lines
		
	
	
		
			399 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			399 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| stop slave;
 | |
| drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 | |
| reset master;
 | |
| reset slave;
 | |
| drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 | |
| start slave;
 | |
| create table t1 (a int);
 | |
| create table t2 (a int);
 | |
| insert into t1 values (1);
 | |
| insert into t2 values (1);
 | |
| delete t1.* from t1, t2 where t1.a = t2.a;
 | |
| select * from t1;
 | |
| a
 | |
| select * from t2;
 | |
| a
 | |
| 1
 | |
| select * from t1;
 | |
| a
 | |
| select * from t2;
 | |
| a
 | |
| 1
 | |
| drop table t1,t2;
 |