mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
more wl#2936 fixes: removed implicit ha_thd() calls (too error-prone),
fixed an assert crash
This commit is contained in:
@ -1330,10 +1330,13 @@ sub collect_mysqld_features () {
|
||||
my $found_variable_list_start= 0;
|
||||
|
||||
#
|
||||
# Execute "mysqld --no-defaults --help --verbose" to get a
|
||||
# Execute "mysqld --help --verbose" to get a list
|
||||
# of all features and settings
|
||||
#
|
||||
my $list= `$exe_mysqld --no-defaults --verbose --help`;
|
||||
# --no-defaults and --skip-grant-tables are to avoid loading
|
||||
# system-wide configs and plugins
|
||||
#
|
||||
my $list= `$exe_mysqld --no-defaults --skip-grant-tables --verbose --help`;
|
||||
|
||||
foreach my $line (split('\n', $list))
|
||||
{
|
||||
|
Reference in New Issue
Block a user