mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			627 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			627 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| drop table if exists t1;
 | |
| create table t1 (a int) engine=innodb;
 | |
| begin;
 | |
| insert into t1 values(1);
 | |
| flush tables with read lock;
 | |
| select * from t1;
 | |
| a
 | |
| commit;
 | |
| select * from t1;
 | |
| a
 | |
| unlock tables;
 | |
| begin;
 | |
| select * from t1 for update;
 | |
| a
 | |
| 1
 | |
| begin;
 | |
| select * from t1 for update;
 | |
| flush tables with read lock;
 | |
| commit;
 | |
| a
 | |
| 1
 | |
| unlock tables;
 | |
| commit;
 | |
| begin;
 | |
| insert into t1 values(10);
 | |
| flush tables with read lock;
 | |
| commit;
 | |
| unlock tables;
 | |
| flush tables with read lock;
 | |
| unlock tables;
 | |
| begin;
 | |
| select * from t1;
 | |
| a
 | |
| 1
 | |
| 10
 | |
| show create database test;
 | |
| Database	Create Database
 | |
| test	CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET latin1 */
 | |
| drop table t1;
 | 
