1
0
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:
serg@sergbook.mysql.com
2007-04-15 15:47:27 +02:00
parent d2384064f2
commit c53037af36
9 changed files with 60 additions and 53 deletions

View File

@ -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))
{