mariadb/mysql-test/suite/maria/suite.pm
Michael Widenius 3c07d04580 Fixed lp:902654 "MariaDB consistently crashes in collect_tables on Aria checkpoint execution"
This happend when you have more than 1024 open Aria tables during checkpoint.


mysql-test/mysql-test-run.pl:
  Fixed that variable names are consistent between external and internal server.
mysql-test/suite/maria/suite.pm:
  Test for aria-block-size instead of 'aria' as 'aria' is not set for embedded server.
  This should be ok for aria tests, as aria is never disabled for these.
storage/maria/ma_checkpoint.c:
  Fixed bug when there are more than 1024 open Aria tables during checkpoint.
2012-02-20 14:03:44 +02:00

8 lines
141 B
Perl

package My::Suite::Maria;
@ISA = qw(My::Suite);
return "Need Aria engine" unless defined $::mysqld_variables{'aria-recover'};
bless { };