mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Moved the test case to separate non-windows specific file. mysql-test/r/create.result: Moved non-windows specific test case to create_not_windows.test. mysql-test/t/create.test: Moved non-windows specific test case to create_not_windows.test. mysql-test/r/create_not_windows.result: #19479: mysqldump creates invalid dump Moved the non-windows specific test case from create.test. mysql-test/t/create_not_windows.test: #19479: mysqldump creates invalid dump Moved the non-windows specific test case from create.test.
		
			
				
	
	
		
			21 lines
		
	
	
		
			400 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			400 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Non-windows specific create tests.
 | |
| 
 | |
| --source include/not_windows.inc
 | |
| 
 | |
| #
 | |
| # Bug#19479:mysqldump creates invalid dump
 | |
| #
 | |
| --disable_warnings
 | |
| drop table if exists `about:text`;
 | |
| --enable_warnings
 | |
| create table `about:text` ( 
 | |
| _id int not null auto_increment,
 | |
| `about:text` varchar(255) not null default '',
 | |
| primary key (_id)
 | |
| );
 | |
| 
 | |
| show create table `about:text`; 
 | |
| drop table `about:text`;
 | |
| 
 | |
| # End of 5.0 tests
 |