Upstream
a87bb96 introduced a new warning, visible at least on all ppc64el and
s390x builds which makes the post-build mariadb-test-test fail:
[Warning] InnoDB: native AIO failed: falling back to
innodb_use_native_aio=OFF
Unlike upstream MariaDB, in Debian we removed libaio in for Linux on
MariaDB 10.6+ in
612630c6 and completely in
1d648d6f. Thus the build
will not have libaio at all on any platform in Debian, and the warning
is useless.
This might not be the optimal solution, but at least suppressing the warning
will unblock the 11.8.3 release for now.
Forwarded: https://jira.mariadb.org/browse/MDEV-37411
Gbp-Pq: Name MDEV-37411-suppress-new-warning-about-native-aio.patch
if (ret)
{
srv_use_native_aio= false;
- sql_print_warning("InnoDB: native AIO failed: falling back to"
+ sql_print_information("InnoDB: native AIO failed: falling back to"
" innodb_use_native_aio=OFF");
}
else