mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	- Corrected mistake in Windows only test. mysql-test/r/windows.result: Bug#23983 ps.test fails to open shared library. - Windows Result cleanup. mysql-test/t/windows.test: Bug#23983 ps.test fails to open shared library. - Windows Test cleanup.
		
			
				
	
	
		
			23 lines
		
	
	
		
			705 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			705 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| use lpt1;
 | |
| ERROR 42000: Unknown database 'lpt1'
 | |
| use com1;
 | |
| ERROR 42000: Unknown database 'com1'
 | |
| use prn;
 | |
| ERROR 42000: Unknown database 'prn'
 | |
| create table nu (a int);
 | |
| drop table nu;
 | |
| create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll';
 | |
| call proc_1();
 | |
| ERROR HY000: No paths allowed for shared library
 | |
| call proc_1();
 | |
| ERROR HY000: No paths allowed for shared library
 | |
| call proc_1();
 | |
| ERROR HY000: No paths allowed for shared library
 | |
| drop procedure proc_1;
 | |
| prepare abc from "install plugin my_plug soname '\\\\root\\\\some_plugin.dll'";
 | |
| execute abc;
 | |
| ERROR HY000: No paths allowed for shared library
 | |
| execute abc;
 | |
| ERROR HY000: No paths allowed for shared library
 | |
| deallocate prepare abc;
 |