mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Bug#16565 mysqld --help --verbose does not order variablesBug#20413 sql_slave_skip_counter is not shown in show variables Bug#20415 Output of mysqld --help --verbose is incomplete Bug#25430 variable not found in SELECT @@global.ft_max_word_len; Bug#32902 plugin variables don't know their names Bug#34599 MySQLD Option and Variable Reference need to be consistent in formatting! Bug#34829 No default value for variable and setting default does not raise error Bug#34834 ? Is accepted as a valid sql mode Bug#34878 Few variables have default value according to documentation but error occurs Bug#34883 ft_boolean_syntax cant be assigned from user variable to global var. Bug#37187 `INFORMATION_SCHEMA`.`GLOBAL_VARIABLES`: inconsistent status Bug#40988 log_output_basic.test succeeded though syntactically false. Bug#41010 enum-style command-line options are not honoured (maria.maria-recover fails) Bug#42103 Setting key_buffer_size to a negative value may lead to very large allocations Bug#44691 Some plugins configured as MYSQL_PLUGIN_MANDATORY in can be disabled Bug#44797 plugins w/o command-line options have no disabling option in --help Bug#46314 string system variables don't support expressions Bug#46470 sys_vars.max_binlog_cache_size_basic_32 is broken Bug#46586 When using the plugin interface the type "set" for options caused a crash. Bug#47212 Crash in DBUG_PRINT in mysqltest.cc when trying to print octal number Bug#48758 mysqltest crashes on sys_vars.collation_server_basic in gcov builds Bug#49417 some complaints about mysqld --help --verbose output Bug#49540 DEFAULT value of binlog_format isn't the default value Bug#49640 ambiguous option '--skip-skip-myisam' (double skip prefix) Bug#49644 init_connect and \0 Bug#49645 init_slave and multi-byte characters Bug#49646 mysql --show-warnings crashes when server dies
		
			
				
	
	
		
			177 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # Test behavior of various per-account limits (aka quotas)
 | |
| #
 | |
| 
 | |
| # Requires privileges to be enabled
 | |
| --source include/not_embedded.inc
 | |
| 
 | |
| # Save the initial number of concurrent sessions
 | |
| --source include/count_sessions.inc
 | |
| 
 | |
| # Prepare play-ground
 | |
| --disable_warnings
 | |
| drop table if exists t1;
 | |
| --enable_warnings
 | |
| create table t1 (i int);
 | |
| # Just be sure that nothing will bother us
 | |
| delete from mysql.user where user like 'mysqltest\_%';
 | |
| delete from mysql.db where user like 'mysqltest\_%';
 | |
| delete from mysql.tables_priv where user like 'mysqltest\_%';
 | |
| delete from mysql.columns_priv where user like 'mysqltest\_%';
 | |
| flush privileges;
 | |
| 
 | |
| # Limits doesn't work with prepared statements (yet)
 | |
| --disable_ps_protocol
 | |
| 
 | |
| # Test of MAX_QUERIES_PER_HOUR limit
 | |
| grant usage on *.* to mysqltest_1@localhost with max_queries_per_hour 2;
 | |
| # This ensures that counters are reset and makes test scheduling independent
 | |
| flush user_resources;
 | |
| connect (mqph, localhost, mysqltest_1,,);
 | |
| connection mqph;
 | |
| select * from t1;
 | |
| select * from t1;
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| select * from t1;
 | |
| connect (mqph2, localhost, mysqltest_1,,);
 | |
| connection mqph2;
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| select * from t1;
 | |
| # cleanup
 | |
| connection default;
 | |
| drop user mysqltest_1@localhost;
 | |
| disconnect mqph;
 | |
| disconnect mqph2;
 | |
| 
 | |
| # Test of MAX_UPDATES_PER_HOUR limit
 | |
| grant usage on *.* to mysqltest_1@localhost with max_updates_per_hour 2;
 | |
| flush user_resources;
 | |
| connect (muph, localhost, mysqltest_1,,);
 | |
| connection muph;
 | |
| select * from t1;
 | |
| select * from t1;
 | |
| select * from t1;
 | |
| delete from t1;
 | |
| delete from t1;
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| delete from t1;
 | |
| select * from t1;
 | |
| connect (muph2, localhost, mysqltest_1,,);
 | |
| connection muph2;
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| delete from t1;
 | |
| select * from t1;
 | |
| # Cleanup
 | |
| connection default;
 | |
| drop user mysqltest_1@localhost;
 | |
| disconnect muph;
 | |
| disconnect muph2;
 | |
| 
 | |
| # Test of MAX_CONNECTIONS_PER_HOUR limit
 | |
| grant usage on *.* to mysqltest_1@localhost with max_connections_per_hour 2;
 | |
| flush user_resources;
 | |
| connect (mcph1, localhost, mysqltest_1,,);
 | |
| connection mcph1;
 | |
| select * from t1;
 | |
| connect (mcph2, localhost, mysqltest_1,,);
 | |
| connection mcph2;
 | |
| select * from t1;
 | |
| --replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| connect (mcph3, localhost, mysqltest_1,,);
 | |
| # Old connection is still ok
 | |
| select * from t1;
 | |
| # Let us try to close old connections and try again. This will also test that
 | |
| # counters are not thrown away if there are no connections for this user.
 | |
| disconnect mcph1;
 | |
| disconnect mcph2;
 | |
| --replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| connect (mcph3, localhost, mysqltest_1,,);
 | |
| # Cleanup
 | |
| connection default;
 | |
| drop user mysqltest_1@localhost;
 | |
| 
 | |
| # Test of MAX_USER_CONNECTIONS limit
 | |
| # We need this to reset internal mqh_used variable
 | |
| flush privileges;
 | |
| grant usage on *.* to mysqltest_1@localhost with max_user_connections 2;
 | |
| flush user_resources;
 | |
| connect (muc1, localhost, mysqltest_1,,);
 | |
| connection muc1;
 | |
| select * from t1;
 | |
| connect (muc2, localhost, mysqltest_1,,);
 | |
| connection muc2;
 | |
| select * from t1;
 | |
| --replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| connect (muc3, localhost, mysqltest_1,,);
 | |
| # Closing of one of connections should help
 | |
| disconnect muc1;
 | |
| connect (muc3, localhost, mysqltest_1,,);
 | |
| select * from t1;
 | |
| # Changing of limit should also help (and immediately)
 | |
| connection default;
 | |
| grant usage on *.* to mysqltest_1@localhost with max_user_connections 3;
 | |
| flush user_resources;
 | |
| connect (muc4, localhost, mysqltest_1,,);
 | |
| connection muc4;
 | |
| select * from t1;
 | |
| --replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| connect (muc5, localhost, mysqltest_1,,);
 | |
| # Clean up
 | |
| connection default;
 | |
| disconnect muc2;
 | |
| disconnect muc3;
 | |
| disconnect muc4;
 | |
| drop user mysqltest_1@localhost;
 | |
| 
 | |
| # Now let us test interaction between global and per-account
 | |
| # max_user_connections limits
 | |
| select @@session.max_user_connections, @@global.max_user_connections;
 | |
| # Local max_user_connections variable can't be set directly
 | |
| # since this limit is per-account
 | |
| --error ER_VARIABLE_IS_READONLY
 | |
| set session max_user_connections= 2;
 | |
| # But it is ok to set global max_user_connections
 | |
| set global max_user_connections= 2;
 | |
| select @@session.max_user_connections, @@global.max_user_connections;
 | |
| # Let us check that global limit works
 | |
| grant usage on *.* to mysqltest_1@localhost;
 | |
| flush user_resources;
 | |
| connect (muca1, localhost, mysqltest_1,,);
 | |
| connection muca1;
 | |
| select @@session.max_user_connections, @@global.max_user_connections;
 | |
| connect (muca2, localhost, mysqltest_1,,);
 | |
| connection muca2;
 | |
| select * from t1;
 | |
| --replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 | |
| --error ER_TOO_MANY_USER_CONNECTIONS
 | |
| connect (muca3, localhost, mysqltest_1,,);
 | |
| # Now we are testing that per-account limit prevails over gloabl limit
 | |
| connection default;
 | |
| grant usage on *.* to mysqltest_1@localhost with max_user_connections 3;
 | |
| flush user_resources;
 | |
| connect (muca3, localhost, mysqltest_1,,);
 | |
| connection muca3;
 | |
| select @@session.max_user_connections, @@global.max_user_connections;
 | |
| --replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 | |
| --error ER_USER_LIMIT_REACHED
 | |
| connect (muca4, localhost, mysqltest_1,,);
 | |
| # Cleanup
 | |
| connection default;
 | |
| disconnect muca1;
 | |
| disconnect muca2;
 | |
| disconnect muca3;
 | |
| set global max_user_connections= 0;
 | |
| drop user mysqltest_1@localhost;
 | |
| --enable_ps_protocol
 | |
| 
 | |
| # Final cleanup
 | |
| drop table t1;
 | |
| 
 | |
| # Wait till all disconnects are completed
 | |
| --source include/wait_until_count_sessions.inc
 | |
| 
 |