mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
10 lines
206 B
Text
10 lines
206 B
Text
|
#
|
|||
|
# 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 `А`;
|
|||
|
|