mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-02 02:53:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			401 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			401 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
 |