mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	 ce7ab467db
			
		
	
	
	ce7ab467db
	
	
	
		
			
			DROP USER looks for sessions by the do-be-dropped user and if found: * fails with ER_CANNOT_USER in Oracle mode * continues with ER_ACTIVE_CONNECTIONS_FOR_USER_TO_DROP warning otherwise Every user being dropped is marked with flag that disallow establishing a new connections on behalf this user.
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| include/master-slave.inc
 | |
| [connection master]
 | |
| connection master;
 | |
| create user replssl@localhost;
 | |
| grant replication slave on *.* to replssl@localhost require ssl;
 | |
| create table t1 (t int auto_increment, KEY(t));
 | |
| connection slave;
 | |
| stop slave;
 | |
| change master to
 | |
| master_user='replssl',
 | |
| master_password='',
 | |
| master_ssl=1,
 | |
| master_ssl_ca ='MYSQL_TEST_DIR/std_data/cacert.pem',
 | |
| master_ssl_cert='MYSQL_TEST_DIR/std_data/client-cert.pem',
 | |
| master_ssl_key='MYSQL_TEST_DIR/std_data/client-key.pem';
 | |
| start slave;
 | |
| connection master;
 | |
| insert into t1 values(1);
 | |
| connection slave;
 | |
| select * from t1;
 | |
| t
 | |
| 1
 | |
| Master_SSL_Allowed = 'Yes'
 | |
| Master_SSL_CA_Path = ''
 | |
| Master_SSL_CA_File = 'MYSQL_TEST_DIR/std_data/cacert.pem'
 | |
| Master_SSL_Crl = ''
 | |
| Master_SSL_Crlpath = ''
 | |
| Master_SSL_Cert = 'MYSQL_TEST_DIR/std_data/client-cert.pem'
 | |
| Master_SSL_Key = 'MYSQL_TEST_DIR/std_data/client-key.pem'
 | |
| include/check_slave_is_running.inc
 | |
| STOP SLAVE;
 | |
| select * from t1;
 | |
| t
 | |
| 1
 | |
| connection master;
 | |
| insert into t1 values (NULL);
 | |
| connection slave;
 | |
| include/wait_for_slave_to_start.inc
 | |
| Master_SSL_Allowed = 'Yes'
 | |
| Master_SSL_CA_Path = ''
 | |
| Master_SSL_CA_File = 'MYSQL_TEST_DIR/std_data/cacert.pem'
 | |
| Master_SSL_Crl = ''
 | |
| Master_SSL_Crlpath = ''
 | |
| Master_SSL_Cert = 'MYSQL_TEST_DIR/std_data/client-cert.pem'
 | |
| Master_SSL_Key = 'MYSQL_TEST_DIR/std_data/client-key.pem'
 | |
| include/check_slave_is_running.inc
 | |
| connection master;
 | |
| drop user replssl@localhost;
 | |
| Warnings:
 | |
| Note	4227	Dropped users 'replssl'@'localhost' have active connections. Use KILL CONNECTION if they should not be used anymore.
 | |
| drop table t1;
 | |
| connection slave;
 | |
| include/stop_slave.inc
 | |
| CHANGE MASTER TO
 | |
| master_user = 'root',
 | |
| master_ssl = 1,
 | |
| master_ssl_ca = '',
 | |
| master_ssl_cert = '',
 | |
| master_ssl_key = '';
 | |
| # End of 5.0 tests
 | |
| include/rpl_end.inc
 |