mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
10 lines
216 B
Text
10 lines
216 B
Text
|
#
|
||
|
# 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;
|
||
|
|