mirror of
https://github.com/MariaDB/server.git
synced 2025-12-13 07:45:44 +01:00
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.
10 lines
243 B
Text
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 `Ö`;
|
|
|