blob: ff7df32e1d6b5f8ae294fc551cf775f42eb35315 (
plain)
1
2
3
4
5
6
7
8
9
|
#
# MDEV-9183 MariaDB 10.1 crash on `mysqld --verbose --help`
#
rename table mysql.plugin to test.plugin;
flush tables;
--exec $MYSQLD_CMD --help --verbose >/dev/null 2>&1
rename table test.plugin to mysql.plugin;
|