1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-35079 Migrate MySQL5.7 to MariaDB 10.4, then to MariaDB 10.11 Failed

correctly detect when partitioning is disabled
This commit is contained in:
Sergei Golubchik
2024-10-04 18:40:34 +02:00
parent 7842cab8c0
commit 3b58c6b93f
4 changed files with 30 additions and 7 deletions

View File

@ -0,0 +1,11 @@
source include/have_innodb.inc;
--echo #
--echo # MDEV-35079 Migrate MySQL5.7 to MariaDB 10.4, then to MariaDB 10.11 Failed
--echo #
let $datadir=`select @@datadir`;
copy_file std_data/mysql57part.frm $datadir/test/mysql57part.frm;
select table_name, concat('<',table_comment,'>') from information_schema.tables
where table_schema='test';
drop table mysql57part;
--echo # End of 10.11 tests