mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	This patch adds for "--ps-protocol" second execution of queries "SELECT". Also in this patch it is added ability to disable/enable (--disable_ps2_protocol/--enable_ps2_protocol) second execution for "--ps-prototocol" in testcases.
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			Text
		
	
	
	
	
	
--source include/have_sequence.inc
 | 
						|
--source include/have_innodb.inc
 | 
						|
--source include/not_embedded.inc
 | 
						|
 | 
						|
--echo #
 | 
						|
--echo # GRANT
 | 
						|
--echo #
 | 
						|
 | 
						|
create database s_db;
 | 
						|
create sequence s_db.s1;
 | 
						|
grant select on s_db.s1 to normal_1@'%' identified by 'pass';
 | 
						|
 | 
						|
--disable_ps2_protocol
 | 
						|
connect(m_normal_1, localhost, normal_1, pass, s_db);
 | 
						|
select * from s1;
 | 
						|
--error ER_TABLEACCESS_DENIED_ERROR
 | 
						|
select nextval(s1);
 | 
						|
show create sequence s1;
 | 
						|
--error ER_TABLEACCESS_DENIED_ERROR
 | 
						|
alter sequence s1 restart 50;
 | 
						|
connection default;
 | 
						|
grant insert on s_db.s1 to normal_1@'%';
 | 
						|
connection m_normal_1;
 | 
						|
select nextval(s1);
 | 
						|
--error ER_TABLEACCESS_DENIED_ERROR
 | 
						|
alter sequence s1 restart 50;
 | 
						|
connection default;
 | 
						|
grant alter on s_db.s1 to normal_1@'%';
 | 
						|
connection m_normal_1;
 | 
						|
alter sequence s1 restart 50;
 | 
						|
select nextval(s1);
 | 
						|
--error ER_TABLEACCESS_DENIED_ERROR
 | 
						|
drop sequence s1;
 | 
						|
--enable_ps2_protocol
 | 
						|
 | 
						|
connection default;
 | 
						|
disconnect m_normal_1;
 | 
						|
drop database s_db;
 | 
						|
drop user normal_1@'%';
 |