mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			290 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			290 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| connect  con1, localhost, root,,;
 | |
| connection default;
 | |
| CREATE TABLE t1 ENGINE=InnoDB SELECT * FROM seq_1_to_100000000;
 | |
| connection con1;
 | |
| KILL QUERY @id;
 | |
| disconnect con1;
 | |
| connection default;
 | |
| ERROR 70100: Query execution was interrupted
 | |
| CREATE TABLE t1 (a SERIAL) ENGINE=InnoDB;
 | |
| DROP TABLE t1;
 |