1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00
Files
mariadb/mysql-test/suite/mariabackup/partition_notwin.result

12 lines
378 B
Plaintext

#
# MDEV-36437 mariabackup - confusing error message when running out of file handles with partitioned MyISAM
#
create table t1 (
id bigint(20) not null auto_increment,
primary key (id)
) engine=myisam
partition by hash (id)
partitions 600;
FOUND 1 /Error 24 on file ./test/t1#P#p\d+\.MY[DI] open during `test`.`t1` table copy: Too many open files/ in backup.log
drop table t1;