Skip to content

Commit

Permalink
Ensure that mysqladmin also works with MariaDB 10.3 + more
Browse files Browse the repository at this point in the history
Increase the number of status variabels that can be handled
  • Loading branch information
montywi committed Dec 7, 2017
1 parent 51c73a4 commit 3eaca00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/mysqladmin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@

char *host= NULL, *user= 0, *opt_password= 0,
*default_charset= (char*) MYSQL_AUTODETECT_CHARSET_NAME;
char truncated_var_names[MAX_MYSQL_VAR][MAX_TRUNC_LENGTH];
char ex_var_names[MAX_MYSQL_VAR][FN_REFLEN];
ulonglong last_values[MAX_MYSQL_VAR];
char truncated_var_names[MAX_MYSQL_VAR+100][MAX_TRUNC_LENGTH];
char ex_var_names[MAX_MYSQL_VAR+100][FN_REFLEN];
ulonglong last_values[MAX_MYSQL_VAR+100];
static int interval=0;
static my_bool option_force=0,interrupted=0,new_line=0,
opt_compress= 0, opt_local= 0, opt_relative= 0, opt_verbose= 0,
Expand Down Expand Up @@ -885,7 +885,7 @@ static int execute_commands(MYSQL *mysql,int argc, char **argv)
return -1;
}

DBUG_ASSERT(mysql_num_rows(res) < MAX_MYSQL_VAR);
DBUG_ASSERT(mysql_num_rows(res) < MAX_MYSQL_VAR+100);

if (!opt_vertical)
print_header(res);
Expand Down

0 comments on commit 3eaca00

Please sign in to comment.