mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			206 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			206 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Bug#25830 SHOW TABLE STATUS behaves differently depending on table name
 | 
						|
#
 | 
						|
set names utf8;
 | 
						|
create table `Ö` (id int);
 | 
						|
show tables from test like 'Ö';
 | 
						|
show tables from test like 'ö';
 | 
						|
drop table `Ö`;
 | 
						|
 |