mariadb/mysql-test/main/lowercase_utf8.test
Vladislav Vaintroub e0cc096503 Fix some testcases, to enable mtr --mysqld=--lower_case_table_name=0
Add include/have_lowercase{0,1}.inc where test case require it.
Reason: lower_case_table_names setting in the corresponding .opt files
is insufficient, if it is overwritten with --mysqld setting in MTR.
2025-10-07 21:46:28 +03:00

10 lines
243 B
Text

--source include/have_lowercase1.inc
#
# 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 `Ö`;