mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			282 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			282 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1;
 | 
						|
connect  con_nonblock,localhost,root,,test;
 | 
						|
connect  con_normal,localhost,root,,test;
 | 
						|
connection con_nonblock;
 | 
						|
CREATE TABLE t1 (a INT PRIMARY KEY);
 | 
						|
INSERT INTO t1 VALUES (1);
 | 
						|
SELECT * FROM t1;
 | 
						|
a
 | 
						|
1
 | 
						|
SELECT * FROM t1;
 | 
						|
a
 | 
						|
1
 | 
						|
connection con_normal;
 | 
						|
DROP TABLE t1;
 |