mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 04:46:15 +01:00 
			
		
		
		
	Hopefully temporary disable, cloud init based bb workers don't resolve localhost -> ::1. workers: kvm-asan, kvm-deb-focal-amd64, and kvm-deb-groovy-amd64
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Text
		
	
	
	
	
	
CREATE TABLE t (a TEXT);
 | 
						|
connect con1,localhost,root,,test;
 | 
						|
SELECT * FROM t;
 | 
						|
a
 | 
						|
connect con2,127.0.0.1,root,,test;
 | 
						|
SELECT * FROM t;
 | 
						|
a
 | 
						|
connection default;
 | 
						|
DROP TABLE t;
 | 
						|
disconnect con1;
 | 
						|
disconnect con2;
 |