mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	row_search_for_mysql(): Acquire an intention lock on the table before locking the first record gap.
		
			
				
	
	
		
			5 lines
		
	
	
		
			168 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			168 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| CREATE TABLE bug56716 (a INT PRIMARY KEY,b INT,c INT,INDEX(b)) ENGINE=InnoDB;
 | |
| SELECT * FROM bug56716 WHERE b<=42 ORDER BY b DESC FOR UPDATE;
 | |
| a	b	c
 | |
| DROP TABLE bug56716;
 |