diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-06-08 14:50:50 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-06-08 14:50:50 +0200 |
commit | d2ca6d2e7ff028f6abbab52e36530046b3f84a49 (patch) | |
tree | 3f83cfcb3982080f9843c69804e5938397d64bb7 /mysql-test/mysql-test-run.pl | |
parent | 7fcfdf7c16f44aed7eab293e020e7a5ee12ccb12 (diff) | |
download | mariadb-git-d2ca6d2e7ff028f6abbab52e36530046b3f84a49.tar.gz |
apply mysql fix for bug#58421 to XtraDB
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 0f9006cad69..2e02ab759ee 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3464,12 +3464,6 @@ sub mysql_install_db { mtr_add_arg($args, "--lc-messages-dir=%s", $install_lang); mtr_add_arg($args, "--character-sets-dir=%s", $install_chsdir); - # On some old linux kernels, aio on tmpfs is not supported - # Remove this if/when Bug #58421 fixes this in the server - if ($^O eq "linux" && $opt_mem) { - mtr_add_arg($args, "--loose-skip-innodb-use-native-aio"); - } - # InnoDB arguments that affect file location and sizes may # need to be given to the bootstrap process as well as the # server process. @@ -4743,6 +4737,7 @@ sub extract_warning_lines ($$) { qr|Access denied for user|, qr|Aborted connection|, qr|table.*is full|, + qr|Linux Native AIO|, # warning that aio does not work on /dev/shm ); my $matched_lines= []; @@ -5246,13 +5241,6 @@ sub mysqld_arguments ($$$) { mtr_add_arg($args, "--user=root"); } - # On some old linux kernels, aio on tmpfs is not supported - # Remove this if/when Bug #58421 fixes this in the server - if ($^O eq "linux" && $opt_mem) - { - mtr_add_arg($args, "--loose-skip-innodb-use-native-aio"); - } - if (!using_extern() and !$opt_user_args) { # Turn on logging to file |