mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-27 08:58:13 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			754 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			754 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # Save the initial number of concurrent sessions
 | |
| connect  con1,localhost,root,,;
 | |
| connect  con2,localhost,root,,;
 | |
| connection con1;
 | |
| CREATE TABLE t1 (a INT) ENGINE=innodb;
 | |
| RESET MASTER;
 | |
| SET AUTOCOMMIT=0;
 | |
| SELECT 1;
 | |
| 1
 | |
| 1
 | |
| connection con2;
 | |
| FLUSH TABLES WITH READ LOCK;
 | |
| include/show_binlog_events.inc
 | |
| connection con1;
 | |
| INSERT INTO t1 VALUES (1);
 | |
| connection con2;
 | |
| include/show_binlog_events.inc
 | |
| UNLOCK TABLES;
 | |
| connection con1;
 | |
| DROP TABLE t1;
 | |
| SET AUTOCOMMIT=1;
 | |
| create table t1 (a int) engine=innodb;
 | |
| connection con1;
 | |
| flush tables with read lock;
 | |
| connection con2;
 | |
| begin;
 | |
| insert into t1 values (1);;
 | |
| connection con1;
 | |
| unlock tables;
 | |
| connection con2;
 | |
| commit;
 | |
| drop table t1;
 | |
| connection default;
 | |
| disconnect con1;
 | |
| disconnect con2;
 | |
| # Wait till all disconnects are completed
 | 
