Commit ccd87d34 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-16678: Ignore #sql-ib tables in main.partition_alter

We missed this in commit 89633995.
parent ca8c3be4
......@@ -86,7 +86,11 @@ show create table t1;
--error ER_CONSTRAINT_FAILED
insert t1 values (2, '2020-01-03', 20);
drop table t1;
--list_files $datadir/test
--let $regexp=/#sql-ib[0-9a-f]+\.ibd\n//
--list_files_write_file $datadir.files.txt $datadir/test
--replace_regex $regexp
--cat_file $datadir.files.txt
--remove_file $datadir.files.txt
# MyISAM, different execution path
create table t1(id int, d date not null, b bool not null default 0, primary key(id,d))
......@@ -102,7 +106,10 @@ show create table t1;
--error ER_CONSTRAINT_FAILED
insert t1 values (2, '2020-01-03', 20);
drop table t1;
--list_files $datadir/test
--list_files_write_file $datadir.files.txt $datadir/test
--replace_regex $regexp
--cat_file $datadir.files.txt
--remove_file $datadir.files.txt
#
# MDEV-13097 Online alter of a partitioned MyISAM table with auto_increment
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment