mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	Added ability to disable/enable (--disable_view_protocol/--enable_view_protocol) view-protocol in tests. When the option "--disable_view_protocol" is used util connections are closed. Added new test for checking view-protocol
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			356 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			356 B
		
	
	
	
		
			Text
		
	
	
	
	
	
-- source include/have_view_protocol.inc
 | 
						|
 | 
						|
flush status;
 | 
						|
 | 
						|
create table t1 (a int);
 | 
						|
insert into t1 (a) values (1);
 | 
						|
create table t2 (b int);
 | 
						|
insert into t2 (b) values (2);
 | 
						|
select * from t1;
 | 
						|
show status like 'Opened_views';
 | 
						|
 | 
						|
flush status;
 | 
						|
--disable_view_protocol
 | 
						|
select * from t2;
 | 
						|
--enable_view_protocol
 | 
						|
 | 
						|
show status like 'Opened_views';
 | 
						|
 | 
						|
drop table t1, t2;
 | 
						|
 | 
						|
 |