mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			712 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			712 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # Tests will be skipped for the view protocol because the view protocol creates 
 | |
| # an additional util connection and other statistics data
 | |
| -- source include/no_view_protocol.inc
 | |
| 
 | |
| source include/not_windows.inc;
 | |
| source include/not_embedded.inc;
 | |
| source include/not_as_root.inc;
 | |
| 
 | |
| #
 | |
| # MDEV-17710 "unknown error" with FLUSH LOGS if log directory is not writeable
 | |
| #
 | |
| move_file $MYSQLTEST_VARDIR/log/mysqld.1.err $MYSQLTEST_VARDIR/log/mysqld.1.err-bak;
 | |
| system chmod u-w $MYSQLTEST_VARDIR/log;
 | |
| replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR;
 | |
| error ER_CANT_CREATE_FILE;
 | |
| flush logs;
 | |
| system chmod u+w $MYSQLTEST_VARDIR/log;
 | |
| move_file $MYSQLTEST_VARDIR/log/mysqld.1.err-bak $MYSQLTEST_VARDIR/log/mysqld.1.err;
 | |
| flush logs;
 | 
