mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	on Windows. (Bug #12325) mysql-test/r/lowercase_table.result: Update results mysql-test/t/lowercase_table.test: Move test to new windows.test, since it is Windows-specific mysys/my_access.c: Check that we've matched the whole forbidden name. mysql-test/include/windows.inc: New BitKeeper file ``mysql-test/include/windows.inc'' mysql-test/r/windows.result: New BitKeeper file ``mysql-test/r/windows.result'' mysql-test/t/windows.test: New BitKeeper file ``mysql-test/t/windows.test''
		
			
				
	
	
		
			21 lines
		
	
	
		
			266 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			266 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Windows-specific tests
 | |
| --source include/windows.inc
 | |
| 
 | |
| #
 | |
| # Bug 9148: Denial of service
 | |
| #
 | |
| --error 1049
 | |
| use lpt1;
 | |
| --error 1049
 | |
| use com1;
 | |
| --error 1049
 | |
| use prn;
 | |
| 
 | |
| #
 | |
| # Bug #12325: Can't create table named 'nu'
 | |
| #
 | |
| create table nu (a int);
 | |
| drop table nu;
 | |
| 
 | |
| # End of 4.1 tests
 |