mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			597 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			597 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # We currently only have named pipe support on windows, so
 | |
| # in order  to optimize things we skip this test on all
 | |
| # other platforms
 | |
| --source include/windows.inc
 | |
| 
 | |
| # thread pool causes different results
 | |
| -- source include/not_threadpool.inc
 | |
| 
 | |
| # Only run this test if named pipe is avaliable
 | |
| let $nmp= query_get_value("SHOW VARIABLES LIKE 'named_pipe'", Value, 1);
 | |
| if ($nmp != ON){
 | |
|   skip No named pipe support;
 | |
| }
 | |
| 
 | |
| # Connect using named pipe for testing
 | |
| connect(pipe_con,localhost,root,,,,,PIPE);
 | |
| 
 | |
| # Source select test case
 | |
| -- source include/common-tests.inc
 | |
| 
 | |
| connection default;
 | |
| disconnect pipe_con;
 |